From: Oleg Drokin Date: Tue, 1 Oct 2013 04:37:03 +0000 (+0000) Subject: Revert "LU-3544 nfs: writing to new files will return ENOENT" X-Git-Tag: 2.5.0~22 X-Git-Url: https://git.whamcloud.com/?a=commitdiff_plain;h=63e8a4f33dc85d2957a035fc7d4b040de35c08ce;p=fs%2Flustre-release.git Revert "LU-3544 nfs: writing to new files will return ENOENT" This causes nasty interop issues with 2.1 that ca cannot get a handle on in time for 2.5, so reverting this for now. This reverts commit 2402980a0891e43668f4016e17f2ff872006e0fa Change-Id: Ia5323df6f493b78832c5ca9cfbd497e80bef26fe Reviewed-on: http://review.whamcloud.com/7809 Reviewed-by: Oleg Drokin Tested-by: Oleg Drokin --- diff --git a/lustre/llite/file.c b/lustre/llite/file.c index ef524f7..869998f 100644 --- a/lustre/llite/file.c +++ b/lustre/llite/file.c @@ -393,6 +393,8 @@ static int ll_intent_file_open(struct file *file, void *lmm, { struct ll_sb_info *sbi = ll_i2sbi(file->f_dentry->d_inode); struct dentry *parent = file->f_dentry->d_parent; + const char *name = file->f_dentry->d_name.name; + const int len = file->f_dentry->d_name.len; struct md_op_data *op_data; struct ptlrpc_request *req; __u32 opc = LUSTRE_OPC_ANY; @@ -417,10 +419,9 @@ static int ll_intent_file_open(struct file *file, void *lmm, opc = LUSTRE_OPC_CREATE; } - op_data = ll_prep_md_op_data(NULL, parent->d_inode, - file->f_dentry->d_inode, NULL, 0, - O_RDWR, opc, NULL); - + op_data = ll_prep_md_op_data(NULL, parent->d_inode, + file->f_dentry->d_inode, name, len, + O_RDWR, opc, NULL); if (IS_ERR(op_data)) RETURN(PTR_ERR(op_data));