mirror of
https://github.com/Fishwaldo/Star64_linux.git
synced 2025-06-27 17:11:46 +00:00
[NETLINK]: Explicit typing
This patch converts "unsigned flags" to use more explict types like u16 instead and incrementally introduces NLMSG_NEW(). Signed-off-by: Jamal Hadi Salim <hadi@cyberus.ca> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
58b82150da
commit
e431b8c004
4 changed files with 16 additions and 20 deletions
|
@ -760,15 +760,14 @@ graft:
|
|||
}
|
||||
|
||||
static int tc_fill_qdisc(struct sk_buff *skb, struct Qdisc *q, u32 clid,
|
||||
u32 pid, u32 seq, unsigned flags, int event)
|
||||
u32 pid, u32 seq, u16 flags, int event)
|
||||
{
|
||||
struct tcmsg *tcm;
|
||||
struct nlmsghdr *nlh;
|
||||
unsigned char *b = skb->tail;
|
||||
struct gnet_dump d;
|
||||
|
||||
nlh = NLMSG_PUT(skb, pid, seq, event, sizeof(*tcm));
|
||||
nlh->nlmsg_flags = flags;
|
||||
nlh = NLMSG_NEW(skb, pid, seq, event, sizeof(*tcm), flags);
|
||||
tcm = NLMSG_DATA(nlh);
|
||||
tcm->tcm_family = AF_UNSPEC;
|
||||
tcm->tcm_ifindex = q->dev->ifindex;
|
||||
|
@ -997,7 +996,7 @@ out:
|
|||
|
||||
static int tc_fill_tclass(struct sk_buff *skb, struct Qdisc *q,
|
||||
unsigned long cl,
|
||||
u32 pid, u32 seq, unsigned flags, int event)
|
||||
u32 pid, u32 seq, u16 flags, int event)
|
||||
{
|
||||
struct tcmsg *tcm;
|
||||
struct nlmsghdr *nlh;
|
||||
|
@ -1005,8 +1004,7 @@ static int tc_fill_tclass(struct sk_buff *skb, struct Qdisc *q,
|
|||
struct gnet_dump d;
|
||||
struct Qdisc_class_ops *cl_ops = q->ops->cl_ops;
|
||||
|
||||
nlh = NLMSG_PUT(skb, pid, seq, event, sizeof(*tcm));
|
||||
nlh->nlmsg_flags = flags;
|
||||
nlh = NLMSG_NEW(skb, pid, seq, event, sizeof(*tcm), flags);
|
||||
tcm = NLMSG_DATA(nlh);
|
||||
tcm->tcm_family = AF_UNSPEC;
|
||||
tcm->tcm_ifindex = q->dev->ifindex;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue