diff options
author | Jon Paul Maloy <jon.maloy@ericsson.com> | 2015-11-19 20:30:40 +0100 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2015-11-20 20:06:09 +0100 |
commit | c7cad0d6f70cd4ce8644ffe528a4df1cdc2e77f5 (patch) | |
tree | 7a9152f5bfc20252055295f49230c7e774c1dfc5 /net/tipc/name_distr.c | |
parent | Merge branch 'bnx2x-stats' (diff) | |
download | linux-c7cad0d6f70cd4ce8644ffe528a4df1cdc2e77f5.tar.xz linux-c7cad0d6f70cd4ce8644ffe528a4df1cdc2e77f5.zip |
tipc: move linearization of buffers to generic code
In commit 5cbb28a4bf65c7e4 ("tipc: linearize arriving NAME_DISTR
and LINK_PROTO buffers") we added linearization of NAME_DISTRIBUTOR,
LINK_PROTOCOL/RESET and LINK_PROTOCOL/ACTIVATE to the function
tipc_udp_recv(). The location of the change was selected in order
to make the commit easily appliable to 'net' and 'stable'.
We now move this linearization to where it should be done, in the
functions tipc_named_rcv() and tipc_link_proto_rcv() respectively.
Reviewed-by: Ying Xue <ying.xue@windriver.com>
Signed-off-by: Jon Maloy <jon.maloy@ericsson.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/tipc/name_distr.c')
-rw-r--r-- | net/tipc/name_distr.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/net/tipc/name_distr.c b/net/tipc/name_distr.c index c07612bab95c..f51c8bdbea1c 100644 --- a/net/tipc/name_distr.c +++ b/net/tipc/name_distr.c @@ -397,6 +397,7 @@ void tipc_named_rcv(struct net *net, struct sk_buff_head *inputq) spin_lock_bh(&tn->nametbl_lock); for (skb = skb_dequeue(inputq); skb; skb = skb_dequeue(inputq)) { + skb_linearize(skb); msg = buf_msg(skb); mtype = msg_type(msg); item = (struct distr_item *)msg_data(msg); |