]> git.proxmox.com Git - mirror_ubuntu-eoan-kernel.git/commitdiff
tipc: rename function msg_get_wrapped() to msg_inner_hdr()
authorJon Maloy <jon.maloy@ericsson.com>
Tue, 25 Jun 2019 17:37:00 +0000 (19:37 +0200)
committerDavid S. Miller <davem@davemloft.net>
Tue, 25 Jun 2019 20:42:54 +0000 (13:42 -0700)
We rename the inline function msg_get_wrapped() to the more
comprehensible msg_inner_hdr().

Signed-off-by: Jon Maloy <jon.maloy@ericsson.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
net/tipc/bcast.c
net/tipc/link.c
net/tipc/msg.h
net/tipc/node.c

index 6c997d4a62189347650c43b9d2891a6883b0be6f..1336f3cdad38eabd6586a0197987c337fa8b838a 100644 (file)
@@ -323,7 +323,7 @@ static int tipc_mcast_send_sync(struct net *net, struct sk_buff *skb,
 
        hdr = buf_msg(skb);
        if (msg_user(hdr) == MSG_FRAGMENTER)
-               hdr = msg_get_wrapped(hdr);
+               hdr = msg_inner_hdr(hdr);
        if (msg_type(hdr) != TIPC_MCAST_MSG)
                return 0;
 
@@ -392,7 +392,7 @@ int tipc_mcast_xmit(struct net *net, struct sk_buff_head *pkts,
                skb = skb_peek(pkts);
                hdr = buf_msg(skb);
                if (msg_user(hdr) == MSG_FRAGMENTER)
-                       hdr = msg_get_wrapped(hdr);
+                       hdr = msg_inner_hdr(hdr);
                msg_set_is_rcast(hdr, method->rcast);
 
                /* Switch method ? */
index aa79bf8ac0aaa7f1137944e843347e6f4fca67fc..f8bf63befe1f5a8d544cf580f05b05c073656a16 100644 (file)
@@ -732,7 +732,7 @@ static void link_profile_stats(struct tipc_link *l)
        if (msg_user(msg) == MSG_FRAGMENTER) {
                if (msg_type(msg) != FIRST_FRAGMENT)
                        return;
-               length = msg_size(msg_get_wrapped(msg));
+               length = msg_size(msg_inner_hdr(msg));
        }
        l->stats.msg_lengths_total += length;
        l->stats.msg_length_counts++;
index 8de02ad6e352cc17b0c825530ba613e586eebc09..da509f0eb9ca48d70ef012418e2e3326d9e83563 100644 (file)
@@ -308,7 +308,7 @@ static inline unchar *msg_data(struct tipc_msg *m)
        return ((unchar *)m) + msg_hdr_sz(m);
 }
 
-static inline struct tipc_msg *msg_get_wrapped(struct tipc_msg *m)
+static inline struct tipc_msg *msg_inner_hdr(struct tipc_msg *m)
 {
        return (struct tipc_msg *)msg_data(m);
 }
@@ -486,7 +486,7 @@ static inline void msg_set_prevnode(struct tipc_msg *m, u32 a)
 static inline u32 msg_origport(struct tipc_msg *m)
 {
        if (msg_user(m) == MSG_FRAGMENTER)
-               m = msg_get_wrapped(m);
+               m = msg_inner_hdr(m);
        return msg_word(m, 4);
 }
 
index 550581d47d51d006df1a6cd734f816aac373fcc6..324a1f91b394ec95f0e2bf2bda7d5f27aea359a7 100644 (file)
@@ -1649,7 +1649,7 @@ static bool tipc_node_check_state(struct tipc_node *n, struct sk_buff *skb,
        int usr = msg_user(hdr);
        int mtyp = msg_type(hdr);
        u16 oseqno = msg_seqno(hdr);
-       u16 iseqno = msg_seqno(msg_get_wrapped(hdr));
+       u16 iseqno = msg_seqno(msg_inner_hdr(hdr));
        u16 exp_pkts = msg_msgcnt(hdr);
        u16 rcv_nxt, syncpt, dlv_nxt, inputq_len;
        int state = n->state;