lists.openwall.net | lists / announce owl-users owl-dev john-users john-dev passwdqc-users yescrypt popa3d-users / oss-security kernel-hardening musl sabotage tlsify passwords / crypt-dev xvendor / Bugtraq Full-Disclosure linux-kernel linux-netdev linux-ext4 linux-hardening linux-cve-announce PHC | |
Open Source and information security mailing list archives
| ||
|
Message-Id: <1267598111-12503-8-git-send-email-yi.zhu@intel.com> Date: Wed, 3 Mar 2010 14:35:11 +0800 From: Zhu Yi <yi.zhu@...el.com> To: netdev@...r.kernel.org Cc: Zhu Yi <yi.zhu@...el.com>, Andrew Hendry <andrew.hendry@...il.com> Subject: [PATCH 8/8] x25: use limited socket backlog Make x25 adapt to the limited socket backlog change. Cc: Andrew Hendry <andrew.hendry@...il.com> Signed-off-by: Zhu Yi <yi.zhu@...el.com> --- net/x25/x25_dev.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/net/x25/x25_dev.c b/net/x25/x25_dev.c index 3e1efe5..5688123 100644 --- a/net/x25/x25_dev.c +++ b/net/x25/x25_dev.c @@ -53,7 +53,7 @@ static int x25_receive_data(struct sk_buff *skb, struct x25_neigh *nb) if (!sock_owned_by_user(sk)) { queued = x25_process_rx_frame(sk, skb); } else { - sk_add_backlog(sk, skb); + __sk_add_backlog(sk, skb); } bh_unlock_sock(sk); sock_put(sk); -- 1.6.3.3 -- To unsubscribe from this list: send the line "unsubscribe netdev" in the body of a message to majordomo@...r.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html
Powered by blists - more mailing lists