]> git.baikalelectronics.ru Git - kernel.git/commit
Merge branch 'af_unix_MSG_PEEK'
authorDavid S. Miller <davem@davemloft.net>
Tue, 29 Sep 2015 20:47:08 +0000 (13:47 -0700)
committerDavid S. Miller <davem@davemloft.net>
Tue, 29 Sep 2015 20:47:08 +0000 (13:47 -0700)
commit31a1ca374c8ff0d20ba56496be43ac4a4bf88c94
treeba19241592c69f4336f1429cd9d2a1933722f015
parentd26420af7c093070d953933a3420e4118b300e68
parent451add0b248215dd6a98ef5acf7d415e615ba8aa
Merge branch 'af_unix_MSG_PEEK'

Aaron Conole says:

====================
af_unix: return data from multiple SKBs on recv() with MSG_PEEK flag

This patch set implements a bugfix for kernel.org bugzilla #12323, allowing
MSG_PEEK to return all queued data on the unix domain socket, not just the
data contained in a single SKB.

This is the v3 version of this patch, which includes a suggested modification
by Eric Dumazet to convert the unix_sk() conversion macro to a static inline
function. These patches are independent and can be applied separately.

This set was tested over a 24-hour period, utilizing a loop continually
executing the bugzilla issue attached python code. It was instrumented with
a pr_err_once() ([   13.798683] unix: went there at least one time).

v2->v3:
 - Added Eric Dumazet's suggestion for #define to static inline
 - Fixed an issue calling unix_state_lock() with an invalid argument

v3->v4:
 - Eliminated an XXX comment
 - Changed from goto unlock to explicit unix_state_unlock() and break
====================

Signed-off-by: David S. Miller <davem@davemloft.net>