public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
From: Greg KH <gregkh@linuxfoundation.org>
To: Jiasheng Jiang <jiasheng@iscas.ac.cn>
Cc: hdegoede@redhat.com, arnd@arndb.de, linux-kernel@vger.kernel.org
Subject: Re: Re: [PATCH v2 1/2] virt: vbox: Add check for device_create_file
Date: Thu, 1 Sep 2022 12:24:42 +0200	[thread overview]
Message-ID: <YxCIam9OS6fWpoA3@kroah.com> (raw)
In-Reply-To: <20220901101649.3499848-1-jiasheng@iscas.ac.cn>

On Thu, Sep 01, 2022 at 06:16:49PM +0800, Jiasheng Jiang wrote:
> On Thu, Sep 01, 2022 at 05:39:46PM +0800, Greg KH wrote:
> >> -	device_create_file(dev, &dev_attr_host_version);
> >> -	device_create_file(dev, &dev_attr_host_features);
> >> +
> >> +	ret = device_create_file(gdev->dev, &dev_attr_host_features);
> >> +	if (ret)
> >> +		goto err_unregister_misc_device_user;
> >> +	ret = device_create_file(gdev->dev, &dev_attr_host_version);
> >> +	if (ret)
> >> +		goto err_remove_file_features;
> >>  
> >>  	vbg_info("vboxguest: misc device minor %d, IRQ %d, I/O port %x, MMIO at %pap (size %pap)\n",
> >>  		 gdev->misc_device.minor, pci->irq, gdev->io_port,
> >> @@ -399,6 +404,8 @@ static int vbg_pci_probe(struct pci_dev *pci, const struct pci_device_id *id)
> >>  
> >>  	return 0;
> >>  
> >> +err_remove_file_features:
> >> +	device_remove_file(gdev->dev, &dev_attr_host_features);
> > Please make a patch series that is linked together, the one you just did
> > was not properly threaded at all (hint, use git send-email).
> > 
> > And again, this is not the correct way to solve this issue, use a
> > default attribute group for the driver instead.  No driver should ever
> > be adding or removing files individually like this.
> 
> Need I use the group to replace the individually removal in
> vbg_pci_remove() too?

If you use a group, the driver core handles all of the adding and
removing automatically for you.  Look at other commits that set the
default groups attribute for a driver for examples.

thanks,

greg k-h

      parent reply	other threads:[~2022-09-01 10:25 UTC|newest]

Thread overview: 3+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2022-09-01 10:16 Re: [PATCH v2 1/2] virt: vbox: Add check for device_create_file Jiasheng Jiang
2022-09-01 10:20 ` Hans de Goede
2022-09-01 10:24 ` Greg KH [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=YxCIam9OS6fWpoA3@kroah.com \
    --to=gregkh@linuxfoundation.org \
    --cc=arnd@arndb.de \
    --cc=hdegoede@redhat.com \
    --cc=jiasheng@iscas.ac.cn \
    --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