All of lore.kernel.org
 help / color / mirror / Atom feed
From: Oliver Hartkopp <socketcan@hartkopp.net>
To: Jakub Kicinski <kuba@kernel.org>
Cc: linux-can@vger.kernel.org, netdev@vger.kernel.org,
	kernel test robot <lkp@intel.com>
Subject: Re: [PATCH net-next v2] net: remove noblock parameter from skb_recv_datagram()
Date: Tue, 22 Mar 2022 09:11:48 +0100	[thread overview]
Message-ID: <5d550eea-21ae-c495-6936-1747b9619304@hartkopp.net> (raw)
In-Reply-To: <20220321145613.5ebd85ec@kicinski-fedora-pc1c0hjn.dhcp.thefacebook.com>



On 21.03.22 22:56, Jakub Kicinski wrote:
> On Sat, 19 Mar 2022 10:41:38 +0100 Oliver Hartkopp wrote:
>> skb_recv_datagram() has two parameters 'flags' and 'noblock' that are
>> merged inside skb_recv_datagram() by 'flags | (noblock ? MSG_DONTWAIT : 0)'
>>
>> As 'flags' may contain MSG_DONTWAIT as value most callers split the 'flags'
>> into 'flags' and 'noblock' with finally obsolete bit operations like this:
>>
>> skb_recv_datagram(sk, flags & ~MSG_DONTWAIT, flags & MSG_DONTWAIT, &rc);
>>
>> And this is not even done consistently with the 'flags' parameter.
>>
>> This patch removes the obsolete and costly splitting into two parameters
>> and only performs bit operations when really needed on the caller side.
>>
>> One missing conversion thankfully reported by kernel test robot. I missed
>> to enable kunit tests to build the mctp code.
> 
> net/vmw_vsock/vmci_transport.c: In function ‘vmci_transport_dgram_dequeue’:
> net/vmw_vsock/vmci_transport.c:1735:13: warning: unused variable ‘noblock’ [-Wunused-variable]
>   1735 |         int noblock;
>        |             ^~~~~~~

Sorry. Double checked that really all touched files are now built on my 
machine.

(Except in af_iucv.c which depends on S390 - but double checked the 
changes 4 times).

v3 is already posted:
https://lore.kernel.org/netdev/20220322080317.54887-1-socketcan@hartkopp.net/T/#u

Best regards,
Oliver

      reply	other threads:[~2022-03-22  8:12 UTC|newest]

Thread overview: 3+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2022-03-19  9:41 [PATCH net-next v2] net: remove noblock parameter from skb_recv_datagram() Oliver Hartkopp
2022-03-21 21:56 ` Jakub Kicinski
2022-03-22  8:11   ` Oliver Hartkopp [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=5d550eea-21ae-c495-6936-1747b9619304@hartkopp.net \
    --to=socketcan@hartkopp.net \
    --cc=kuba@kernel.org \
    --cc=linux-can@vger.kernel.org \
    --cc=lkp@intel.com \
    --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 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.