public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
From: Rusty Russell <rusty@rustcorp.com.au>
To: Martin Kepplinger <martink@posteo.de>
Cc: lguest@lists.ozlabs.org, linux-kernel@vger.kernel.org,
	tomvanbraeckel@gmail.com, Martin Kepplinger <martink@posteo.de>
Subject: Re: [PATCH] lguest: explicitly set miscdevice's private_data NULL
Date: Tue, 24 Mar 2015 11:52:19 +1030	[thread overview]
Message-ID: <87iodri3zo.fsf@rustcorp.com.au> (raw)
In-Reply-To: <1427114168-32730-1-git-send-email-martink@posteo.de>

Martin Kepplinger <martink@posteo.de> writes:
> There is a proposed change to the miscdevice's behaviour on open(). Currently
> file->private_data stays NULL, but only because we don't have an open-entry in
> struct file_operations.
>
> This may change so that private_data, more consistently, is always set to
> struct miscdevice, not only *if* the driver has it's own open() routine and
> fops-entry, see https://lkml.org/lkml/2014/12/4/939 and commit
> 94e4fe2cab3d43b3ba7c3f721743006a8c9d913a
>
> In short: If we rely on file->private_data being NULL, we should ensure
> it is NULL ourselves.
>
> Signed-off-by: Martin Kepplinger <martink@posteo.de>

OK, applied.

Thanks,
Rusty.

> ---
>  drivers/lguest/lguest_user.c | 8 ++++++++
>  1 file changed, 8 insertions(+)
>
> diff --git a/drivers/lguest/lguest_user.c b/drivers/lguest/lguest_user.c
> index c4c6113..30c6068 100644
> --- a/drivers/lguest/lguest_user.c
> +++ b/drivers/lguest/lguest_user.c
> @@ -339,6 +339,13 @@ static ssize_t write(struct file *file, const char __user *in,
>  	}
>  }
>  
> +static int open(struct inode *inode, struct file *file)
> +{
> +	file->private_data = NULL;
> +
> +	return 0;
> +}
> +
>  /*L:060
>   * The final piece of interface code is the close() routine.  It reverses
>   * everything done in initialize().  This is usually called because the
> @@ -409,6 +416,7 @@ static int close(struct inode *inode, struct file *file)
>   */
>  static const struct file_operations lguest_fops = {
>  	.owner	 = THIS_MODULE,
> +	.open	 = open,
>  	.release = close,
>  	.write	 = write,
>  	.read	 = read,
> -- 
> 2.1.4
>
> --
> To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
> the body of a message to majordomo@vger.kernel.org
> More majordomo info at  http://vger.kernel.org/majordomo-info.html
> Please read the FAQ at  http://www.tux.org/lkml/

      reply	other threads:[~2015-03-24  2:01 UTC|newest]

Thread overview: 2+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2015-03-23 12:36 [PATCH] lguest: explicitly set miscdevice's private_data NULL Martin Kepplinger
2015-03-24  1:22 ` Rusty Russell [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=87iodri3zo.fsf@rustcorp.com.au \
    --to=rusty@rustcorp.com.au \
    --cc=lguest@lists.ozlabs.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=martink@posteo.de \
    --cc=tomvanbraeckel@gmail.com \
    /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