mirror of
https://github.com/Fishwaldo/Star64_linux.git
synced 2025-07-12 17:42:38 +00:00
af_unix: Remove unnecessary brackets around CONFIG_AF_UNIX_OOB.
[ Upstream commit4edf21aa94
] Let's remove unnecessary brackets around CONFIG_AF_UNIX_OOB. Signed-off-by: Kuniyuki Iwashima <kuniyu@amazon.co.jp> Link: https://lore.kernel.org/r/20220317032308.65372-1-kuniyu@amazon.co.jp Signed-off-by: Jakub Kicinski <kuba@kernel.org> Stable-dep-of:2aab4b9690
("af_unix: fix struct pid leaks in OOB support") Signed-off-by: Sasha Levin <sashal@kernel.org>
This commit is contained in:
parent
01797526cf
commit
fa69967f62
1 changed files with 3 additions and 3 deletions
|
@ -1969,7 +1969,7 @@ out:
|
|||
*/
|
||||
#define UNIX_SKB_FRAGS_SZ (PAGE_SIZE << get_order(32768))
|
||||
|
||||
#if (IS_ENABLED(CONFIG_AF_UNIX_OOB))
|
||||
#if IS_ENABLED(CONFIG_AF_UNIX_OOB)
|
||||
static int queue_oob(struct socket *sock, struct msghdr *msg, struct sock *other)
|
||||
{
|
||||
struct unix_sock *ousk = unix_sk(other);
|
||||
|
@ -2035,7 +2035,7 @@ static int unix_stream_sendmsg(struct socket *sock, struct msghdr *msg,
|
|||
|
||||
err = -EOPNOTSUPP;
|
||||
if (msg->msg_flags & MSG_OOB) {
|
||||
#if (IS_ENABLED(CONFIG_AF_UNIX_OOB))
|
||||
#if IS_ENABLED(CONFIG_AF_UNIX_OOB)
|
||||
if (len)
|
||||
len--;
|
||||
else
|
||||
|
@ -2106,7 +2106,7 @@ static int unix_stream_sendmsg(struct socket *sock, struct msghdr *msg,
|
|||
sent += size;
|
||||
}
|
||||
|
||||
#if (IS_ENABLED(CONFIG_AF_UNIX_OOB))
|
||||
#if IS_ENABLED(CONFIG_AF_UNIX_OOB)
|
||||
if (msg->msg_flags & MSG_OOB) {
|
||||
err = queue_oob(sock, msg, other);
|
||||
if (err)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue