From: Christian Brauner <christian.brauner@ubuntu.com>
To: Sargun Dhillon <sargun@sargun.me>
Cc: linux-kernel@vger.kernel.org,
containers@lists.linux-foundation.org, linux-api@vger.kernel.org,
linux-fsdevel@vger.kernel.org, tycho@tycho.ws, jannh@google.com,
cyphar@cyphar.com, oleg@redhat.com, luto@amacapital.net,
viro@zeniv.linux.org.uk, gpascutto@mozilla.com,
ealvarez@mozilla.com, fweimer@redhat.com, jld@mozilla.com,
arnd@arndb.de
Subject: Re: [PATCH v6 1/3] vfs, fdtable: Add get_task_file helper
Date: Wed, 25 Dec 2019 17:19:33 +0100 [thread overview]
Message-ID: <20191225161932.fhvbgrcco36mhvaw@wittgenstein> (raw)
In-Reply-To: <20191223212645.3qw7my4u4rjihxjf@wittgenstein>
On Mon, Dec 23, 2019 at 10:26:46PM +0100, Christian Brauner wrote:
> On Mon, Dec 23, 2019 at 09:08:55PM +0000, Sargun Dhillon wrote:
> > This introduces a function which can be used to fetch a file, given an
> > arbitrary task. As long as the user holds a reference (refcnt) to the
> > task_struct it is safe to call, and will either return NULL on failure,
> > or a pointer to the file, with a refcnt.
> >
> > Signed-off-by: Sargun Dhillon <sargun@sargun.me>
Could you please add:
Suggested-by: Oleg Nesterov <oleg@redhat.com>
and add a line like:
"This is based on a patch sent by Oleg (cf. [1]) a while ago."
[1]: Link: https://lore.kernel.org/r/20180915160423.GA31461@redhat.com
apart from a few nits below:
Acked-by: Christian Brauner <christian.brauner@ubuntu.com>
> > ---
> > fs/file.c | 22 ++++++++++++++++++++--
> > include/linux/file.h | 2 ++
> > 2 files changed, 22 insertions(+), 2 deletions(-)
> >
> > diff --git a/fs/file.c b/fs/file.c
> > index 2f4fcf985079..0ceeb046f4f3 100644
> > --- a/fs/file.c
> > +++ b/fs/file.c
> > @@ -706,9 +706,9 @@ void do_close_on_exec(struct files_struct *files)
> > spin_unlock(&files->file_lock);
> > }
> >
> > -static struct file *__fget(unsigned int fd, fmode_t mask, unsigned int refs)
> > +static struct file *__fget_files(struct files_struct *files, unsigned int fd,
> > + fmode_t mask, unsigned int refs)
> > {
> > - struct files_struct *files = current->files;
> > struct file *file;
> >
> > rcu_read_lock();
> > @@ -729,6 +729,11 @@ static struct file *__fget(unsigned int fd, fmode_t mask, unsigned int refs)
> > return file;
> > }
> >
> > +static struct file *__fget(unsigned int fd, fmode_t mask, unsigned int refs)
This can be:
static inline struct file *__fget(...)
> > +{
> > + return __fget_files(current->files, fd, mask, refs);
> > +}
> > +
> > struct file *fget_many(unsigned int fd, unsigned int refs)
> > {
> > return __fget(fd, FMODE_PATH, refs);
> > @@ -746,6 +751,19 @@ struct file *fget_raw(unsigned int fd)
> > }
> > EXPORT_SYMBOL(fget_raw);
> >
> > +struct file *fget_task(struct task_struct *task, unsigned int fd)
> > +{
> > + struct file *file = NULL;
> > +
> > + task_lock(task);
> > + if (task->files)
> > + file = __fget_files(task->files, fd, 0, 1);
> > +
> > + task_unlock(task);
>
> Nit: remove the \n:
>
> task_lock(task);
> if (task->files)
> file = __fget_files(task->files, fd, 0, 1);
> task_unlock(task);
>
> Christian
prev parent reply other threads:[~2019-12-25 16:19 UTC|newest]
Thread overview: 3+ messages / expand[flat|nested] mbox.gz Atom feed top
2019-12-23 21:08 [PATCH v6 1/3] vfs, fdtable: Add get_task_file helper Sargun Dhillon
2019-12-23 21:26 ` Christian Brauner
2019-12-25 16:19 ` Christian Brauner [this message]
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=20191225161932.fhvbgrcco36mhvaw@wittgenstein \
--to=christian.brauner@ubuntu.com \
--cc=arnd@arndb.de \
--cc=containers@lists.linux-foundation.org \
--cc=cyphar@cyphar.com \
--cc=ealvarez@mozilla.com \
--cc=fweimer@redhat.com \
--cc=gpascutto@mozilla.com \
--cc=jannh@google.com \
--cc=jld@mozilla.com \
--cc=linux-api@vger.kernel.org \
--cc=linux-fsdevel@vger.kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=luto@amacapital.net \
--cc=oleg@redhat.com \
--cc=sargun@sargun.me \
--cc=tycho@tycho.ws \
--cc=viro@zeniv.linux.org.uk \
/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