From: Mark Rustad Date: Fri, 25 Jul 2014 09:18:17 +0000 (-0700) Subject: netlink: Fix shadow warning on jiffies X-Git-Tag: v3.17-rc1~106^2~75 X-Git-Url: https://openfabrics.org/gitweb/?a=commitdiff_plain;h=d87de1f3e9635b16345bde54306c949417b689ad;p=~emulex%2Finfiniband.git netlink: Fix shadow warning on jiffies Change formal parameter name to not shadow the global jiffies. Signed-off-by: Mark Rustad Signed-off-by: Jeff Kirsher Signed-off-by: David S. Miller --- diff --git a/include/net/netlink.h b/include/net/netlink.h index 2b47eaadba8..6c1076275aa 100644 --- a/include/net/netlink.h +++ b/include/net/netlink.h @@ -949,12 +949,12 @@ static inline int nla_put_flag(struct sk_buff *skb, int attrtype) * nla_put_msecs - Add a msecs netlink attribute to a socket buffer * @skb: socket buffer to add attribute to * @attrtype: attribute type - * @jiffies: number of msecs in jiffies + * @njiffies: number of jiffies to convert to msecs */ static inline int nla_put_msecs(struct sk_buff *skb, int attrtype, - unsigned long jiffies) + unsigned long njiffies) { - u64 tmp = jiffies_to_msecs(jiffies); + u64 tmp = jiffies_to_msecs(njiffies); return nla_put(skb, attrtype, sizeof(u64), &tmp); }