linux-wireless.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH 1/1] netlink: nla_nest_end return "unsigned init"
@ 2011-05-16 14:23 Wey-Yi Guy
  2011-05-16 17:35 ` John W. Linville
  0 siblings, 1 reply; 3+ messages in thread
From: Wey-Yi Guy @ 2011-05-16 14:23 UTC (permalink / raw)
  To: linville; +Cc: linux-wireless, ipw3945-devel, Wey-Yi Guy

skb->len has unsigned int, return the correct value from nla_nest_end call.

Signed-off-by: Wey-Yi Guy <wey-yi.w.guy@intel.com>
---
 include/net/netlink.h |    3 ++-
 1 files changed, 2 insertions(+), 1 deletions(-)

diff --git a/include/net/netlink.h b/include/net/netlink.h
index 8a3906a..241fc0d 100644
--- a/include/net/netlink.h
+++ b/include/net/netlink.h
@@ -1015,7 +1015,8 @@ static inline struct nlattr *nla_nest_start(struct sk_buff *skb, int attrtype)
  *
  * Returns the total data length of the skb.
  */
-static inline int nla_nest_end(struct sk_buff *skb, struct nlattr *start)
+static inline unsigned int nla_nest_end(struct sk_buff *skb,
+					struct nlattr *start)
 {
 	start->nla_len = skb_tail_pointer(skb) - (unsigned char *)start;
 	return skb->len;
-- 
1.7.0.4


^ permalink raw reply related	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2011-05-16 17:52 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-05-16 14:23 [PATCH 1/1] netlink: nla_nest_end return "unsigned init" Wey-Yi Guy
2011-05-16 17:35 ` John W. Linville
2011-05-16 17:51   ` David Miller

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).