From owner-svn-src-user@FreeBSD.ORG Sun May 17 23:14:27 2009 Return-Path: Delivered-To: svn-src-user@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 4FA28106564A; Sun, 17 May 2009 23:14:27 +0000 (UTC) (envelope-from kmacy@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 3D95A8FC08; Sun, 17 May 2009 23:14:27 +0000 (UTC) (envelope-from kmacy@FreeBSD.org) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.3/8.14.3) with ESMTP id n4HNEQRp042421; Sun, 17 May 2009 23:14:26 GMT (envelope-from kmacy@svn.freebsd.org) Received: (from kmacy@localhost) by svn.freebsd.org (8.14.3/8.14.3/Submit) id n4HNEQ7o042420; Sun, 17 May 2009 23:14:26 GMT (envelope-from kmacy@svn.freebsd.org) Message-Id: <200905172314.n4HNEQ7o042420@svn.freebsd.org> From: Kip Macy Date: Sun, 17 May 2009 23:14:26 +0000 (UTC) To: src-committers@freebsd.org, svn-src-user@freebsd.org X-SVN-Group: user MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r192268 - user/kmacy/ZFS_MFC/sys/sys X-BeenThere: svn-src-user@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "SVN commit messages for the experimental " user" src tree" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 17 May 2009 23:14:27 -0000 Author: kmacy Date: Sun May 17 23:14:26 2009 New Revision: 192268 URL: http://svn.freebsd.org/changeset/base/192268 Log: nothing references ni_dirfd remove to avoid breaking the ABI Modified: user/kmacy/ZFS_MFC/sys/sys/namei.h Modified: user/kmacy/ZFS_MFC/sys/sys/namei.h ============================================================================== --- user/kmacy/ZFS_MFC/sys/sys/namei.h Sun May 17 22:46:23 2009 (r192267) +++ user/kmacy/ZFS_MFC/sys/sys/namei.h Sun May 17 23:14:26 2009 (r192268) @@ -69,7 +69,7 @@ struct nameidata { struct vnode *ni_startdir; /* starting directory */ struct vnode *ni_rootdir; /* logical root directory */ struct vnode *ni_topdir; /* logical top directory */ - int ni_dirfd; /* starting directory for *at functions */ /* + * Results: returned from/manipulated by lookup */ struct vnode *ni_vp; /* vnode of result */ @@ -86,6 +86,9 @@ struct nameidata { * through the VOP interface. */ struct componentname ni_cnd; +#ifdef notyet + int ni_dirfd; /* starting directory for *at functions */ /* +#endif }; }; #ifdef _KERNEL @@ -168,9 +171,11 @@ NDINIT_ALL(struct nameidata *ndp, ndp->ni_cnd.cn_flags = flags; ndp->ni_segflg = segflg; ndp->ni_dirp = namep; - ndp->ni_dirfd = dirfd; ndp->ni_startdir = startdir; ndp->ni_cnd.cn_thread = td; +#ifdef notyet + ndp->ni_dirfd = dirfd; +#endif } #define NDF_NO_DVP_RELE 0x00000001