* [PATCH 1/2] nfsd4: fix break_lease flags on nfsd open
@ 2011-06-09 22:44 J. Bruce Fields
2011-06-10 3:49 ` Benny Halevy
0 siblings, 1 reply; 3+ messages in thread
From: J. Bruce Fields @ 2011-06-09 22:44 UTC (permalink / raw)
To: linux-nfs; +Cc: Casey Bodley
From: J. Bruce Fields <bfields@redhat.com>
Thanks to Casey Bodley for pointing out that on a read open we pass 0,
instead of O_RDONLY, to break_lease, with the result that a read open is
treated like a write open for the purposes of lease breaking!
Reported-by: Casey Bodley <cbodley@citi.umich.edu>
Signed-off-by: J. Bruce Fields <bfields@redhat.com>
---
fs/nfsd/vfs.c | 15 +++++++++------
1 files changed, 9 insertions(+), 6 deletions(-)
diff --git a/fs/nfsd/vfs.c b/fs/nfsd/vfs.c
index f3fb61b..848a4af 100644
--- a/fs/nfsd/vfs.c
+++ b/fs/nfsd/vfs.c
@@ -696,7 +696,15 @@ nfsd_access(struct svc_rqst *rqstp, struct svc_fh *fhp, u32 *access, u32 *suppor
}
#endif /* CONFIG_NFSD_V3 */
+static int nfsd_open_break_lease(struct inode *inode, int access)
+{
+ unsigned int mode;
+ if (access & NFSD_MAY_NOT_BREAK_LEASE)
+ return 0;
+ mode = (access & NFSD_MAY_WRITE) ? O_WRONLY : O_RDONLY;
+ return break_lease(inode, mode | O_NONBLOCK);
+}
/*
* Open an existing file or directory.
@@ -744,12 +752,7 @@ nfsd_open(struct svc_rqst *rqstp, struct svc_fh *fhp, int type,
if (!inode->i_fop)
goto out;
- /*
- * Check to see if there are any leases on this file.
- * This may block while leases are broken.
- */
- if (!(access & NFSD_MAY_NOT_BREAK_LEASE))
- host_err = break_lease(inode, O_NONBLOCK | ((access & NFSD_MAY_WRITE) ? O_WRONLY : 0));
+ host_err = nfsd_open_break_lease(inode, access);
if (host_err) /* NOMEM or WOULDBLOCK */
goto out_nfserr;
--
1.7.4.1
^ permalink raw reply related [flat|nested] 3+ messages in thread* Re: [PATCH 1/2] nfsd4: fix break_lease flags on nfsd open
2011-06-09 22:44 [PATCH 1/2] nfsd4: fix break_lease flags on nfsd open J. Bruce Fields
@ 2011-06-10 3:49 ` Benny Halevy
2011-06-12 18:26 ` J. Bruce Fields
0 siblings, 1 reply; 3+ messages in thread
From: Benny Halevy @ 2011-06-10 3:49 UTC (permalink / raw)
To: J. Bruce Fields; +Cc: linux-nfs, Casey Bodley
On 2011-06-09 18:44, J. Bruce Fields wrote:
> From: J. Bruce Fields <bfields@redhat.com>
>
> Thanks to Casey Bodley for pointing out that on a read open we pass 0,
> instead of O_RDONLY, to break_lease, with the result that a read open is
> treated like a write open for the purposes of lease breaking!
>
> Reported-by: Casey Bodley <cbodley@citi.umich.edu>
> Signed-off-by: J. Bruce Fields <bfields@redhat.com>
> ---
> fs/nfsd/vfs.c | 15 +++++++++------
> 1 files changed, 9 insertions(+), 6 deletions(-)
>
> diff --git a/fs/nfsd/vfs.c b/fs/nfsd/vfs.c
> index f3fb61b..848a4af 100644
> --- a/fs/nfsd/vfs.c
> +++ b/fs/nfsd/vfs.c
> @@ -696,7 +696,15 @@ nfsd_access(struct svc_rqst *rqstp, struct svc_fh *fhp, u32 *access, u32 *suppor
> }
> #endif /* CONFIG_NFSD_V3 */
>
> +static int nfsd_open_break_lease(struct inode *inode, int access)
> +{
> + unsigned int mode;
>
> + if (access & NFSD_MAY_NOT_BREAK_LEASE)
> + return 0;
> + mode = (access & NFSD_MAY_WRITE) ? O_WRONLY : O_RDONLY;
> + return break_lease(inode, mode | O_NONBLOCK);
> +}
>
> /*
> * Open an existing file or directory.
> @@ -744,12 +752,7 @@ nfsd_open(struct svc_rqst *rqstp, struct svc_fh *fhp, int type,
> if (!inode->i_fop)
> goto out;
>
> - /*
> - * Check to see if there are any leases on this file.
> - * This may block while leases are broken.
> - */
> - if (!(access & NFSD_MAY_NOT_BREAK_LEASE))
> - host_err = break_lease(inode, O_NONBLOCK | ((access & NFSD_MAY_WRITE) ? O_WRONLY : 0));
> + host_err = nfsd_open_break_lease(inode, access);
nit: looks like there's an extra space before "host_err ="...
Benny
> if (host_err) /* NOMEM or WOULDBLOCK */
> goto out_nfserr;
>
^ permalink raw reply [flat|nested] 3+ messages in thread* Re: [PATCH 1/2] nfsd4: fix break_lease flags on nfsd open
2011-06-10 3:49 ` Benny Halevy
@ 2011-06-12 18:26 ` J. Bruce Fields
0 siblings, 0 replies; 3+ messages in thread
From: J. Bruce Fields @ 2011-06-12 18:26 UTC (permalink / raw)
To: Benny Halevy; +Cc: linux-nfs, Casey Bodley
On Thu, Jun 09, 2011 at 11:49:33PM -0400, Benny Halevy wrote:
> On 2011-06-09 18:44, J. Bruce Fields wrote:
> > From: J. Bruce Fields <bfields@redhat.com>
> >
> > Thanks to Casey Bodley for pointing out that on a read open we pass 0,
> > instead of O_RDONLY, to break_lease, with the result that a read open is
> > treated like a write open for the purposes of lease breaking!
> >
> > Reported-by: Casey Bodley <cbodley@citi.umich.edu>
> > Signed-off-by: J. Bruce Fields <bfields@redhat.com>
> > ---
> > fs/nfsd/vfs.c | 15 +++++++++------
> > 1 files changed, 9 insertions(+), 6 deletions(-)
> >
> > diff --git a/fs/nfsd/vfs.c b/fs/nfsd/vfs.c
> > index f3fb61b..848a4af 100644
> > --- a/fs/nfsd/vfs.c
> > +++ b/fs/nfsd/vfs.c
> > @@ -696,7 +696,15 @@ nfsd_access(struct svc_rqst *rqstp, struct svc_fh *fhp, u32 *access, u32 *suppor
> > }
> > #endif /* CONFIG_NFSD_V3 */
> >
> > +static int nfsd_open_break_lease(struct inode *inode, int access)
> > +{
> > + unsigned int mode;
> >
> > + if (access & NFSD_MAY_NOT_BREAK_LEASE)
> > + return 0;
> > + mode = (access & NFSD_MAY_WRITE) ? O_WRONLY : O_RDONLY;
> > + return break_lease(inode, mode | O_NONBLOCK);
> > +}
> >
> > /*
> > * Open an existing file or directory.
> > @@ -744,12 +752,7 @@ nfsd_open(struct svc_rqst *rqstp, struct svc_fh *fhp, int type,
> > if (!inode->i_fop)
> > goto out;
> >
> > - /*
> > - * Check to see if there are any leases on this file.
> > - * This may block while leases are broken.
> > - */
> > - if (!(access & NFSD_MAY_NOT_BREAK_LEASE))
> > - host_err = break_lease(inode, O_NONBLOCK | ((access & NFSD_MAY_WRITE) ? O_WRONLY : 0));
> > + host_err = nfsd_open_break_lease(inode, access);
>
> nit: looks like there's an extra space before "host_err ="...
Whoops, yup; fixed.--b.
>
> Benny
>
> > if (host_err) /* NOMEM or WOULDBLOCK */
> > goto out_nfserr;
> >
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2011-06-12 18:26 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-06-09 22:44 [PATCH 1/2] nfsd4: fix break_lease flags on nfsd open J. Bruce Fields
2011-06-10 3:49 ` Benny Halevy
2011-06-12 18:26 ` J. Bruce Fields
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).