diff options
| author | Arnaldo Carvalho de Melo <acme@redhat.com> | 2007-04-25 19:08:35 -0700 | 
|---|---|---|
| committer | David S. Miller <davem@sunset.davemloft.net> | 2007-04-25 22:26:34 -0700 | 
| commit | b529ccf2799c14346d1518e9bdf1f88f03643e99 (patch) | |
| tree | f899a5a5d66d2ca21724c1871ee3afeda6c4a670 /kernel/taskstats.c | |
| parent | 965ffea43d4ebe8cd7b9fee78d651268dd7d23c5 (diff) | |
[NETLINK]: Introduce nlmsg_hdr() helper
For the common "(struct nlmsghdr *)skb->data" sequence, so that we reduce the
number of direct accesses to skb->data and for consistency with all the other
cast skb member helpers.
Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'kernel/taskstats.c')
| -rw-r--r-- | kernel/taskstats.c | 4 | 
1 files changed, 2 insertions, 2 deletions
| diff --git a/kernel/taskstats.c b/kernel/taskstats.c index 4c3476fa058d..ad7d2392cb0e 100644 --- a/kernel/taskstats.c +++ b/kernel/taskstats.c @@ -102,7 +102,7 @@ static int prepare_reply(struct genl_info *info, u8 cmd, struct sk_buff **skbp,   */  static int send_reply(struct sk_buff *skb, pid_t pid)  { -	struct genlmsghdr *genlhdr = nlmsg_data((struct nlmsghdr *)skb->data); +	struct genlmsghdr *genlhdr = nlmsg_data(nlmsg_hdr(skb));  	void *reply = genlmsg_data(genlhdr);  	int rc; @@ -121,7 +121,7 @@ static int send_reply(struct sk_buff *skb, pid_t pid)  static void send_cpu_listeners(struct sk_buff *skb,  					struct listener_list *listeners)  { -	struct genlmsghdr *genlhdr = nlmsg_data((struct nlmsghdr *)skb->data); +	struct genlmsghdr *genlhdr = nlmsg_data(nlmsg_hdr(skb));  	struct listener *s, *tmp;  	struct sk_buff *skb_next, *skb_cur = skb;  	void *reply = genlmsg_data(genlhdr); | 
