public inbox for netdev@vger.kernel.org
 help / color / mirror / Atom feed
* yield() in netlink_broadcast_filtered
@ 2012-04-06 14:11 Fredrick
  2012-04-06 15:05 ` Stephen Hemminger
  0 siblings, 1 reply; 2+ messages in thread
From: Fredrick @ 2012-04-06 14:11 UTC (permalink / raw)
  To: netdev; +Cc: eric.dumazet



I see there is a yield being called from
netlink_broadcast_filtered.
.....
int netlink_broadcast_filtered(...)
{
....
         if (info.delivered) {
                 if (info.congested && (allocation & __GFP_WAIT))
                         yield();
                 return 0;
         }
         return -ESRCH;
}
.....

But I don't see the point of calling it.
After the yield, there is nothing being done.
It just returns. So why yield ?
Why can't it simply return?


-Fredrick

^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2012-04-06 15:05 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-04-06 14:11 yield() in netlink_broadcast_filtered Fredrick
2012-04-06 15:05 ` Stephen Hemminger

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox