From: Dmitry Torokhov <dtor@vmware.com>
To: Asias He <asias@redhat.com>
Cc: netdev@vger.kernel.org, "David S. Miller" <davem@davemloft.net>,
Andy King <acking@vmware.com>, Reilly Grant <grantr@vmware.com>,
linux-kernel@vger.kernel.org
Subject: Re: [PATCH] VSOCK: Fix misc device registration
Date: Wed, 24 Apr 2013 08:38:18 -0700 [thread overview]
Message-ID: <20130424153818.GA6916@dtor-ws.eng.vmware.com> (raw)
In-Reply-To: <1366785232-15653-1-git-send-email-asias@redhat.com>
On Wed, Apr 24, 2013 at 02:33:52PM +0800, Asias He wrote:
> When we call vsock_core_init to init VSOCK the second time,
> vsock_device.minor still points to the old dynamically allocated minor
> number. misc_register will allocate it for us successfully as if we were
> asking for a static one. However, when other user call misc_register to
> allocate a dynamic minor number, it will give the one used by
> vsock_core_init(), causing this:
>
> [ 405.470687] WARNING: at fs/sysfs/dir.c:536 sysfs_add_one+0xcc/0xf0()
> [ 405.470689] Hardware name: OptiPlex 790
> [ 405.470690] sysfs: cannot create duplicate filename '/dev/char/10:54'
>
> Always set vsock_device.minor to MISC_DYNAMIC_MINOR before we
> register.
>
> Cc: "David S. Miller" <davem@davemloft.net>
> Cc: Andy King <acking@vmware.com>
> Cc: Dmitry Torokhov <dtor@vmware.com>
> Cc: Reilly Grant <grantr@vmware.com>
> Cc: netdev@vger.kernel.org
> Cc: linux-kernel@vger.kernel.org
> Signed-off-by: Asias He <asias@redhat.com>
Well spotted.
Acked-by: Dmitry Torokhov <dtor@vmware.com>
> ---
> net/vmw_vsock/af_vsock.c | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/net/vmw_vsock/af_vsock.c b/net/vmw_vsock/af_vsock.c
> index 7f93e2a..4b4db18 100644
> --- a/net/vmw_vsock/af_vsock.c
> +++ b/net/vmw_vsock/af_vsock.c
> @@ -1932,7 +1932,6 @@ static const struct file_operations vsock_device_ops = {
>
> static struct miscdevice vsock_device = {
> .name = "vsock",
> - .minor = MISC_DYNAMIC_MINOR,
> .fops = &vsock_device_ops,
> };
>
> @@ -1942,6 +1941,7 @@ static int __vsock_core_init(void)
>
> vsock_init_tables();
>
> + vsock_device.minor = MISC_DYNAMIC_MINOR;
> err = misc_register(&vsock_device);
> if (err) {
> pr_err("Failed to register misc device\n");
> --
> 1.8.1.4
next prev parent reply other threads:[~2013-04-24 15:38 UTC|newest]
Thread overview: 3+ messages / expand[flat|nested] mbox.gz Atom feed top
2013-04-24 6:33 [PATCH] VSOCK: Fix misc device registration Asias He
2013-04-24 15:38 ` Dmitry Torokhov [this message]
2013-04-25 8:22 ` David Miller
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=20130424153818.GA6916@dtor-ws.eng.vmware.com \
--to=dtor@vmware.com \
--cc=acking@vmware.com \
--cc=asias@redhat.com \
--cc=davem@davemloft.net \
--cc=grantr@vmware.com \
--cc=linux-kernel@vger.kernel.org \
--cc=netdev@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;
as well as URLs for NNTP newsgroup(s).