|
@@ -112,22 +112,23 @@ int nfnetlink_has_listeners(struct net *net, unsigned int group)
|
|
|
}
|
|
|
EXPORT_SYMBOL_GPL(nfnetlink_has_listeners);
|
|
|
|
|
|
-int nfnetlink_send(struct sk_buff *skb, struct net *net, u32 pid,
|
|
|
+int nfnetlink_send(struct sk_buff *skb, struct net *net, u32 portid,
|
|
|
unsigned int group, int echo, gfp_t flags)
|
|
|
{
|
|
|
- return nlmsg_notify(net->nfnl, skb, pid, group, echo, flags);
|
|
|
+ return nlmsg_notify(net->nfnl, skb, portid, group, echo, flags);
|
|
|
}
|
|
|
EXPORT_SYMBOL_GPL(nfnetlink_send);
|
|
|
|
|
|
-int nfnetlink_set_err(struct net *net, u32 pid, u32 group, int error)
|
|
|
+int nfnetlink_set_err(struct net *net, u32 portid, u32 group, int error)
|
|
|
{
|
|
|
- return netlink_set_err(net->nfnl, pid, group, error);
|
|
|
+ return netlink_set_err(net->nfnl, portid, group, error);
|
|
|
}
|
|
|
EXPORT_SYMBOL_GPL(nfnetlink_set_err);
|
|
|
|
|
|
-int nfnetlink_unicast(struct sk_buff *skb, struct net *net, u_int32_t pid, int flags)
|
|
|
+int nfnetlink_unicast(struct sk_buff *skb, struct net *net, u32 portid,
|
|
|
+ int flags)
|
|
|
{
|
|
|
- return netlink_unicast(net->nfnl, skb, pid, flags);
|
|
|
+ return netlink_unicast(net->nfnl, skb, portid, flags);
|
|
|
}
|
|
|
EXPORT_SYMBOL_GPL(nfnetlink_unicast);
|
|
|
|