From owner-cvs-all@FreeBSD.ORG Fri Oct 6 05:07:02 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3F63A16A407; Fri, 6 Oct 2006 05:07:02 +0000 (UTC) (envelope-from kib@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 828E543D64; Fri, 6 Oct 2006 05:06:58 +0000 (GMT) (envelope-from kib@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k9656wFE091808; Fri, 6 Oct 2006 05:06:58 GMT (envelope-from kib@repoman.freebsd.org) Received: (from kib@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k9656wOb091807; Fri, 6 Oct 2006 05:06:58 GMT (envelope-from kib) Message-Id: <200610060506.k9656wOb091807@repoman.freebsd.org> From: Konstantin Belousov Date: Fri, 6 Oct 2006 05:06:58 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_6 Cc: Subject: cvs commit: src/sys/ufs/ffs ffs_softdep.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 06 Oct 2006 05:07:02 -0000 kib 2006-10-06 05:06:58 UTC FreeBSD src repository Modified files: (Branch: RELENG_6) sys/ufs/ffs ffs_softdep.c Log: MFC rev. 1.198: Fix the glitch introduced in rev. 1.93. In softdep_sync_metadata(), switch by worklist type contains two for() loops, for D_INDIRDEP and D_PAGEDEP. On error, these loops are exited by break, where the switch actually shall be leaved. Use goto instead of break to reach the error handling code. Approved by: re (kensmith), pjd (mentor) Revision Changes Path 1.181.2.10 +3 -2 src/sys/ufs/ffs/ffs_softdep.c