All of lore.kernel.org
 help / color / mirror / Atom feed
From: Kalle Valo <kvalo@codeaurora.org>
To: Hin-Tak Leung <htl10@users.sourceforge.net>
Cc: Herton Ronaldo Krzesinski <herton@canonical.com>,
	Larry Finger <larry.finger@lwfinger.net>,
	"David S. Miller" <davem@davemloft.net>,
	Jakub Kicinski <kuba@kernel.org>,
	gregkh@linuxfoundation.org, Salah Triki <salah.triki@gmail.com>,
	linux-wireless@vger.kernel.org, netdev@vger.kernel.org,
	linux-kernel@vger.kernel.org
Subject: Re: [PATCH] wireless: rtl8187: replace udev with usb_get_dev()
Date: Tue, 27 Jul 2021 09:10:45 +0300	[thread overview]
Message-ID: <87im0wguca.fsf@codeaurora.org> (raw)
In-Reply-To: <53895498.1259278.1627160074135@mail.yahoo.com> (Hin-Tak Leung's message of "Sat, 24 Jul 2021 20:54:34 +0000 (UTC)")

Hin-Tak Leung <htl10@users.sourceforge.net> writes:

> On Saturday, 24 July 2021, 19:35:12 BST, Salah Triki <salah.triki@gmail.com> wrote:
>
>> Replace udev with usb_get_dev() in order to make code cleaner.
>
>> Signed-off-by: Salah Triki <salah.triki@gmail.com>
>> ---
>> drivers/net/wireless/realtek/rtl818x/rtl8187/dev.c | 4 +---
>> 1 file changed, 1 insertion(+), 3 deletions(-)
>
>> diff --git a/drivers/net/wireless/realtek/rtl818x/rtl8187/dev.c
> b/drivers/net/wireless/realtek/rtl818x/rtl8187/dev.c
>> index eb68b2d3caa1..30bb3c2b8407 100644
>> --- a/drivers/net/wireless/realtek/rtl818x/rtl8187/dev.c
>> +++ b/drivers/net/wireless/realtek/rtl818x/rtl8187/dev.c
>> @@ -1455,9 +1455,7 @@ static int rtl8187_probe(struct usb_interface *intf,
>
>>     SET_IEEE80211_DEV(dev, &intf->dev);
>>     usb_set_intfdata(intf, dev);
>> -    priv->udev = udev;
>> -
>> -    usb_get_dev(udev);
>> +    priv->udev = usb_get_dev(udev);
>
>>     skb_queue_head_init(&priv->rx_queue);
>
>> -- 
>> 2.25.1
>
> It is not cleaner - the change is not functionally equivalent. Before
> the change, the reference count is increased after the assignment; and
> after the change, before the assignment. So my question is, does the
> reference count increasing a little earlier matters? What can go wrong
> between very short time where the reference count increases, and
> priv->udev not yet assigned? I think there might be a race condition
> where the probbe function is called very shortly twice. Especially if
> the time of running the reference count function is non-trivial.
>
> Larry, what do you think? 

BTW, please don't use HTML in emails. Our lists drop all HTML mail (and
for a good reason).

-- 
https://patchwork.kernel.org/project/linux-wireless/list/

https://wireless.wiki.kernel.org/en/developers/documentation/submittingpatches

  parent reply	other threads:[~2021-07-27  6:11 UTC|newest]

Thread overview: 6+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2021-07-24 18:34 [PATCH] wireless: rtl8187: replace udev with usb_get_dev() Salah Triki
     [not found] ` <53895498.1259278.1627160074135@mail.yahoo.com>
2021-07-25  6:33   ` Greg KH
2021-07-25 19:46   ` Larry Finger
2021-07-27  6:10   ` Kalle Valo [this message]
     [not found] <1490129435.403938.1627412276697.ref@mail.yahoo.com>
2021-07-27 18:57 ` Hin-Tak Leung
2021-07-28  7:13   ` Kalle Valo

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=87im0wguca.fsf@codeaurora.org \
    --to=kvalo@codeaurora.org \
    --cc=davem@davemloft.net \
    --cc=gregkh@linuxfoundation.org \
    --cc=herton@canonical.com \
    --cc=htl10@users.sourceforge.net \
    --cc=kuba@kernel.org \
    --cc=larry.finger@lwfinger.net \
    --cc=linux-kernel@vger.kernel.org \
    --cc=linux-wireless@vger.kernel.org \
    --cc=netdev@vger.kernel.org \
    --cc=salah.triki@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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.