Received: by mail.netbsd.org (Postfix, from userid 605) id 5158A14A17C; Sun, 29 Jan 2012 06:35:01 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 7348A14A155 for ; Sun, 29 Jan 2012 06:35:00 +0000 (UTC) X-Virus-Scanned: amavisd-new at NetBSD.org Received: from mail.netbsd.org ([127.0.0.1]) by localhost (mail.NetBSD.org [127.0.0.1]) (amavisd-new, port 10025) with ESMTP id sPYXbwZ2VAOk for ; Sun, 29 Jan 2012 06:34:59 +0000 (UTC) Received: from cvs.netbsd.org (cvs.NetBSD.org [IPv6:2001:4f8:3:7:2e0:81ff:fe30:95bd]) by mail.netbsd.org (Postfix) with ESMTP id 2261414A10F for ; Sun, 29 Jan 2012 06:34:59 +0000 (UTC) Received: by cvs.netbsd.org (Postfix, from userid 500) id 5BAB7175DD; Sun, 29 Jan 2012 06:34:59 +0000 (UTC) MIME-Version: 1.0 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Date: Sun, 29 Jan 2012 06:34:59 +0000 From: "David A. Holland" Subject: CVS commit: src/sys To: source-changes@NetBSD.org X-Mailer: log_accum Message-Id: <20120129063459.5BAB7175DD@cvs.netbsd.org> Sender: source-changes-owner@NetBSD.org List-Id: source-changes.NetBSD.org Precedence: bulk Reply-To: source-changes-d@NetBSD.org Mail-Reply-To: "David A. Holland" Mail-Followup-To: source-changes-d@NetBSD.org Module Name: src Committed By: dholland Date: Sun Jan 29 06:34:59 UTC 2012 Modified Files: src/sys/kern: vfs_quotactl.c vfs_subr.c src/sys/miscfs/genfs: layer_extern.h layer_vfsops.c src/sys/sys: mount.h quotactl.h src/sys/ufs/ufs: ufs_extern.h ufs_quota.c ufs_vfsops.c Log Message: Move the proplib-based quota command dispatching (that is, the code that knows the magic string names for the allowed actions) out of UFS-specific code and to fs-independent code. This introduces QUOTACTL_* operation codes and changes the signature of VFS_QUOTACTL() again for compile safety. Note: this change requires a kernel version bump. To generate a diff of this commit: cvs rdiff -u -r1.3 -r1.4 src/sys/kern/vfs_quotactl.c cvs rdiff -u -r1.427 -r1.428 src/sys/kern/vfs_subr.c cvs rdiff -u -r1.30 -r1.31 src/sys/miscfs/genfs/layer_extern.h cvs rdiff -u -r1.35 -r1.36 src/sys/miscfs/genfs/layer_vfsops.c cvs rdiff -u -r1.203 -r1.204 src/sys/sys/mount.h cvs rdiff -u -r1.1 -r1.2 src/sys/sys/quotactl.h cvs rdiff -u -r1.67 -r1.68 src/sys/ufs/ufs/ufs_extern.h cvs rdiff -u -r1.70 -r1.71 src/sys/ufs/ufs/ufs_quota.c cvs rdiff -u -r1.44 -r1.45 src/sys/ufs/ufs/ufs_vfsops.c Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.