diff options
author | Jon Paul Maloy <jon.maloy@ericsson.com> | 2014-07-16 20:41:03 -0400 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2014-07-17 00:38:19 -0400 |
commit | 9fbfb8b120bd4fe89cd70d6c8841e6e1cfab2609 (patch) | |
tree | 7e6c357f2d40a854df8ff8ca4825b5eb5bfaec3f /net/tipc/msg.c | |
parent | c4116e10579c5bbbfc3cd2ad0324ee0d8691e531 (diff) |
tipc: rename temporarily named functions
After the previous commit, we can now give the functions with temporary
names, such as tipc_link_xmit2(), tipc_msg_build2() etc., their proper
names.
There are no functional changes in this commit.
Signed-off-by: Jon Maloy <jon.maloy@ericsson.com>
Reviewed-by: Erik Hugne <erik.hugne@ericsson.com>
Reviewed-by: Ying Xue <ying.xue@windriver.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/tipc/msg.c')
-rw-r--r-- | net/tipc/msg.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/net/tipc/msg.c b/net/tipc/msg.c index e3102ea494d4..b6f45d029933 100644 --- a/net/tipc/msg.c +++ b/net/tipc/msg.c | |||
@@ -120,7 +120,7 @@ out_free: | |||
120 | 120 | ||
121 | 121 | ||
122 | /** | 122 | /** |
123 | * tipc_msg_build2 - create buffer chain containing specified header and data | 123 | * tipc_msg_build - create buffer chain containing specified header and data |
124 | * @mhdr: Message header, to be prepended to data | 124 | * @mhdr: Message header, to be prepended to data |
125 | * @iov: User data | 125 | * @iov: User data |
126 | * @offset: Posision in iov to start copying from | 126 | * @offset: Posision in iov to start copying from |
@@ -129,8 +129,8 @@ out_free: | |||
129 | * @chain: Buffer or chain of buffers to be returned to caller | 129 | * @chain: Buffer or chain of buffers to be returned to caller |
130 | * Returns message data size or errno: -ENOMEM, -EFAULT | 130 | * Returns message data size or errno: -ENOMEM, -EFAULT |
131 | */ | 131 | */ |
132 | int tipc_msg_build2(struct tipc_msg *mhdr, struct iovec const *iov, | 132 | int tipc_msg_build(struct tipc_msg *mhdr, struct iovec const *iov, |
133 | int offset, int dsz, int pktmax , struct sk_buff **chain) | 133 | int offset, int dsz, int pktmax , struct sk_buff **chain) |
134 | { | 134 | { |
135 | int mhsz = msg_hdr_sz(mhdr); | 135 | int mhsz = msg_hdr_sz(mhdr); |
136 | int msz = mhsz + dsz; | 136 | int msz = mhsz + dsz; |