Date: Wed, 8 Jul 2015 19:18:16 +0000 (GMT) From: jenkins-admin@freebsd.org To: jenkins-admin@FreeBSD.org, freebsd-current@freebsd.org Subject: FreeBSD_HEAD-tests - Build #1167 - Fixed Message-ID: <1154192775.136.1436383096532.JavaMail.jenkins@jenkins-9.freebsd.org> In-Reply-To: <106065565.132.1436344626789.JavaMail.jenkins@jenkins-9.freebsd.org> References: <106065565.132.1436344626789.JavaMail.jenkins@jenkins-9.freebsd.org>
next in thread | previous in thread | raw e-mail | index | archive | help
FreeBSD_HEAD-tests - Build #1167 - Fixed: Check console output at https://jenkins.freebsd.org/job/FreeBSD_HEAD-tests/1167/ to view the results. From owner-freebsd-current@freebsd.org Wed Jul 8 19:21:42 2015 Return-Path: <owner-freebsd-current@freebsd.org> Delivered-To: freebsd-current@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id E42E89966C7 for <freebsd-current@mailman.ysv.freebsd.org>; Wed, 8 Jul 2015 19:21:42 +0000 (UTC) (envelope-from rndfax@yandex.ru) Received: from forward8l.mail.yandex.net (forward8l.mail.yandex.net [84.201.143.141]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "forwards.mail.yandex.net", Issuer "Certum Level IV CA" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id A43A41E82 for <freebsd-current@freebsd.org>; Wed, 8 Jul 2015 19:21:42 +0000 (UTC) (envelope-from rndfax@yandex.ru) Received: from smtp19.mail.yandex.net (smtp19.mail.yandex.net [IPv6:2a02:6b8:0:1402::11a]) by forward8l.mail.yandex.net (Yandex) with ESMTP id 968CB1A41131; Wed, 8 Jul 2015 22:21:31 +0300 (MSK) Received: from smtp19.mail.yandex.net (localhost [127.0.0.1]) by smtp19.mail.yandex.net (Yandex) with ESMTP id 3C613BE00B0; Wed, 8 Jul 2015 22:21:31 +0300 (MSK) Received: from broadband-46-188-123-161.2com.net (broadband-46-188-123-161.2com.net [46.188.123.161]) by smtp19.mail.yandex.net (nwsmtp/Yandex) with ESMTPSA id DesQ51hqYp-LUWWFjgQ; Wed, 8 Jul 2015 22:21:30 +0300 (using TLSv1.2 with cipher ECDHE-RSA-AES128-SHA256 (128/128 bits)) (Client certificate not present) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=yandex.ru; s=mail; t=1436383290; bh=P2RtZ3LNoRDOn41yomor55Zi/bDrs6trH6KIrSsjW+U=; h=From:To:Cc:Subject:Date:Message-Id:X-Mailer; b=HdJzadLPt4zfIFmsF0dEAPzXpi4wC7fCG5MvjkY+zuqcvlnMZn5TZAqg4TMIYxtJI gxFFlFfN1/w4CUyN6/gXvWYDLrbNv0wfnKJkVEOPQ+ZIDJgzms1xzFSlU6pepYR4iB fdUOFSIHdj0wduwc+DhJkPIvRjlU6D+YH23mJ5HM= Authentication-Results: smtp19.mail.yandex.net; dkim=pass header.i=@yandex.ru From: Aleksey Kuleshov <rndfax@yandex.ru> To: freebsd-current@freebsd.org Cc: Aleksey Kuleshov <rndfax@yandex.ru> Subject: [PATCH] ofw: fix infinite loop Date: Wed, 8 Jul 2015 22:14:03 +0000 Message-Id: <1436393643-1282-1-git-send-email-rndfax@yandex.ru> X-Mailer: git-send-email 2.4.5 X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Discussions about the use of FreeBSD-current <freebsd-current.freebsd.org> List-Unsubscribe: <http://lists.freebsd.org/mailman/options/freebsd-current>, <mailto:freebsd-current-request@freebsd.org?subject=unsubscribe> List-Archive: <http://lists.freebsd.org/pipermail/freebsd-current/> List-Post: <mailto:freebsd-current@freebsd.org> List-Help: <mailto:freebsd-current-request@freebsd.org?subject=help> List-Subscribe: <http://lists.freebsd.org/mailman/listinfo/freebsd-current>, <mailto:freebsd-current-request@freebsd.org?subject=subscribe> X-List-Received-Date: Wed, 08 Jul 2015 19:21:43 -0000 Fix obvious typo in ofw bus when there is no interrupt-parent for the node. --- sys/dev/ofw/ofw_bus_subr.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sys/dev/ofw/ofw_bus_subr.c b/sys/dev/ofw/ofw_bus_subr.c index 233675d..c7a50db 100644 --- a/sys/dev/ofw/ofw_bus_subr.c +++ b/sys/dev/ofw/ofw_bus_subr.c @@ -444,7 +444,7 @@ ofw_bus_intr_to_rl(device_t dev, phandle_t node, if (OF_searchencprop(node, "interrupt-parent", &iparent, sizeof(iparent)) == -1) { for (iparent = node; iparent != 0; - iparent = OF_parent(node)) { + iparent = OF_parent(iparent)) { if (OF_hasprop(iparent, "interrupt-controller")) break; } -- 2.4.5
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?1154192775.136.1436383096532.JavaMail.jenkins>