NETLINK_CB_PORTID() ignored the given parameter, this was wrong. Signed-off-by: Hauke Mehrtens <hauke@xxxxxxxxxx> --- backport/backport-include/linux/netlink.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/backport/backport-include/linux/netlink.h b/backport/backport-include/linux/netlink.h index 2058a90..521b72e 100644 --- a/backport/backport-include/linux/netlink.h +++ b/backport/backport-include/linux/netlink.h @@ -6,10 +6,10 @@ /* this is for patches we apply */ #if LINUX_VERSION_CODE < KERNEL_VERSION(3,7,0) #define netlink_notify_portid(__notify) (__notify->pid) -#define NETLINK_CB_PORTID(__skb) NETLINK_CB(cb->skb).pid +#define NETLINK_CB_PORTID(__skb) NETLINK_CB(__skb).pid #else #define netlink_notify_portid(__notify) (__notify->portid) -#define NETLINK_CB_PORTID(__skb) NETLINK_CB(cb->skb).portid +#define NETLINK_CB_PORTID(__skb) NETLINK_CB(__skb).portid #endif #endif /* __BACKPORT_LINUX_NETLINK_H */ -- 1.7.10.4 -- To unsubscribe from this list: send the line "unsubscribe backports" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html