From mboxrd@z Thu Jan 1 00:00:00 1970 From: "Yan, Zheng" Subject: Re: [PATCH][RESEND] vfs: Make __d_materialise_dentry() set the materialised dentry name correctly Date: Mon, 31 Mar 2014 17:01:14 +0800 Message-ID: <53392EDA.7000904@intel.com> References: <1394115376-17109-1-git-send-email-zheng.z.yan@intel.com> <6487FCC2-FB5C-4A32-94EF-5D3352A39781@primarydata.com> Mime-Version: 1.0 Content-Type: text/plain; charset=windows-1252 Content-Transfer-Encoding: QUOTED-PRINTABLE Cc: Trond Myklebust , David Howells , linux-fsdevel@vger.kernel.org, linux-nfs@vger.kernel.org, ceph-devel@vger.kernel.org, sage@inktank.com To: Viro Alexander Return-path: In-Reply-To: <6487FCC2-FB5C-4A32-94EF-5D3352A39781@primarydata.com> Sender: ceph-devel-owner@vger.kernel.org List-Id: linux-fsdevel.vger.kernel.org Hi Al, Could you include this in 3.15 Regards Yan, Zheng On 03/06/2014 10:35 PM, Trond Myklebust wrote: >=20 > On Mar 6, 2014, at 9:16, Yan, Zheng wrote: >=20 >> From: David Howells >> >> Make __d_materialise_dentry() set the materialised dentry name corre= ctly by >> flipping the arguments to switch_names(). >> >> switch_names() is lazy: if both names are internal to their dentries= , it'll >> overwrite that of the first dentry with that of the second, and won'= t update >> that of the second. >> >> In the case of __d_materialise_dentry(), the second is an already ex= tant >> anonymous dentry that we want to insert into the tree in place of th= e dentry we >> just looked up[*]. However, the dentry we just looked up carries th= e name we >> actually want to use. >> >> [*] This is used by NFS to join a mount of a subtree into a mount of= a tree >> nearer the root when the two meet, where both mounts share a superbl= ock and >> thus a set of dentries. >> >> Signed-off-by: David Howells >> --- >> fs/dcache.c | 2 +- >> 1 file changed, 1 insertion(+), 1 deletion(-) >> >> diff --git a/fs/dcache.c b/fs/dcache.c >> index 265e0ce..ff779d4 100644 >> --- a/fs/dcache.c >> +++ b/fs/dcache.c >> @@ -2698,7 +2698,7 @@ static void __d_materialise_dentry(struct dent= ry *dentry, struct dentry *anon) >> >> dparent =3D dentry->d_parent; >> >> - switch_names(dentry, anon); >> + switch_names(anon, dentry); >> swap(dentry->d_name.hash, anon->d_name.hash); >> >> dentry->d_parent =3D dentry; >=20 > Well spotted... >=20 > We ought to better document the fact that =92switch_names=92 is asymm= etrical. Perhaps change it to =91update_target_name=92, and then switch= the argument names so that the =92target=92 really is the thing that g= ets updated? >=20 > _________________________________ > Trond Myklebust > Linux NFS client maintainer, PrimaryData > trond.myklebust@primarydata.com >=20 -- To unsubscribe from this list: send the line "unsubscribe ceph-devel" i= n the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html