From owner-cvs-all Mon Oct 14 16:18:11 2002 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 3384137B401; Mon, 14 Oct 2002 16:18:10 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id BC75A43EAF; Mon, 14 Oct 2002 16:18:09 -0700 (PDT) (envelope-from mckusick@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id g9ENI9Mt096537; Mon, 14 Oct 2002 16:18:09 -0700 (PDT) (envelope-from mckusick@repoman.freebsd.org) Received: (from mckusick@localhost) by repoman.freebsd.org (8.12.6/8.12.3/Submit) id g9ENI9h5096536; Mon, 14 Oct 2002 16:18:09 -0700 (PDT) Message-Id: <200210142318.g9ENI9h5096536@repoman.freebsd.org> From: Kirk McKusick Date: Mon, 14 Oct 2002 16:18:09 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/ufs/ufs ufs_vnops.c src/sys/ufs/ffs ffs_vnops.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG mckusick 2002/10/14 16:18:09 PDT Modified files: sys/ufs/ufs ufs_vnops.c sys/ufs/ffs ffs_vnops.c Log: When reading or writing the extended attributes of a special device or fifo in UFS2, the normal ufs_strategy routine needs to be used rather than the spec_strategy or fifo_strategy routine. Thus the ffsext_strategy routine is interposed in the ffs_vnops vectors for special devices and fifo's to pick off this special case. Otherwise it simply falls through to the usual spec_strategy or fifo_strategy routine. Submitted by: Robert Watson Sponsored by: DARPA & NAI Labs. Revision Changes Path 1.99 +38 -3 src/sys/ufs/ffs/ffs_vnops.c 1.213 +0 -2 src/sys/ufs/ufs/ufs_vnops.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message