From: Trond Myklebust <trond.myklebust@fys.uio.no>
To: Andries Brouwer <aebr@win.tue.nl>
Cc: Ulrich Drepper <drepper@redhat.com>,
Linux Kernel <linux-kernel@vger.kernel.org>
Subject: Re: NFS regression in 2.6
Date: Wed, 20 Aug 2003 11:43:04 -0700 [thread overview]
Message-ID: <16195.49464.935754.526386@charged.uio.no> (raw)
In-Reply-To: <20030820192409.A2868@pclin040.win.tue.nl>
>>>>> " " == Andries Brouwer <aebr@win.tue.nl> writes:
> I don't think it will. My analysis of yesterday night was:
> - no silly rename is done
> - this is because d_count equals 1
> - this is because we have two different dentries for the same
> file
> - this is caused by the fragment
> /* If we're doing an exclusive create, optimize away
> the lookup */ if (nfs_is_exclusive_create(dir, nd))
> return NULL;
> in nfs/dir.c. Do you agree?
No... The above snippet just short-circuits the process of doing an
RPC call in order to look the file up on the *server*. Doing such a
lookup would be wrong since it can race with a file creation on
another NFS client.
IOW the result of the above 2 lines should be the immediate creation
of a negative dentry (i.e. one without an inode) that open_namei() can
pass on to vfs_create().
When we get to the unlink() call, we shouldn't be hitting nfs_lookup()
at all unless something somewhere is causing this first dentry to be
permanently dropped out of the dcache.
In short the scenario should be that
- mkstemp() does an open(O_EXCL) -> nfs_lookup() creates hashed
negative dentry -> nfs_create() then does an O_EXCL call to the
server and instantiates the dentry.
- unlink() walks the pathname -> finds the existing dentry using
cached_lookup() and only calls down to nfs_lookup_revalidate().
Cheers,
Trond
next prev parent reply other threads:[~2003-08-20 18:43 UTC|newest]
Thread overview: 18+ messages / expand[flat|nested] mbox.gz Atom feed top
2003-08-19 18:13 Ulrich Drepper
2003-08-19 18:49 ` Ulrich Drepper
2003-08-19 19:19 ` Tupshin Harper
2003-08-19 19:06 ` Andries Brouwer
2003-08-19 19:15 ` Ulrich Drepper
2003-08-20 2:26 ` Andries Brouwer
2003-08-20 5:37 ` Trond Myklebust
2003-08-20 17:24 ` Andries Brouwer
2003-08-20 18:43 ` Trond Myklebust [this message]
2003-08-20 19:02 ` Ulrich Drepper
2003-08-20 19:52 ` Andries Brouwer
2003-08-20 20:02 ` Trond Myklebust
2003-08-21 0:28 ` NFS regression in 2.6 -- gnome problem Tupshin Harper
2003-08-21 0:38 ` Andries Brouwer
2003-08-21 1:07 ` Tupshin Harper
2003-08-21 3:05 ` NFS regression in 2.6 Ulrich Drepper
2003-08-20 17:43 ` Ulrich Drepper
2003-08-20 18:06 ` Andries Brouwer
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=16195.49464.935754.526386@charged.uio.no \
--to=trond.myklebust@fys.uio.no \
--cc=aebr@win.tue.nl \
--cc=drepper@redhat.com \
--cc=linux-kernel@vger.kernel.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox
all inboxes | Powered by JetHome®