Skip to content

Commit

Permalink
packet: fix broken build.
Browse files Browse the repository at this point in the history
This patch fixes a broken build due to a missing header:
...
  CC      net/ipv4/proc.o
In file included from include/net/net_namespace.h:15,
                 from net/ipv4/proc.c:35:
include/net/netns/packet.h:11: error: field 'sklist_lock' has incomplete type
...

The lock of netns_packet has been replaced by a recent patch to be a mutex instead of a spinlock,
but we need to replace the header file to be linux/mutex.h instead of linux/spinlock.h as well.

See commit 0fa7fa9:
packet: Protect packet sk list with mutex (v2) patch,

Signed-off-by: Rami Rosen <rosenr@marvell.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
  • Loading branch information
Rami Rosen authored and David S. Miller committed Aug 23, 2012
1 parent 748e2d9 commit f63c45e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion include/net/netns/packet.h
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
#define __NETNS_PACKET_H__

#include <linux/rculist.h>
#include <linux/spinlock.h>
#include <linux/mutex.h>

struct netns_packet {
struct mutex sklist_lock;
Expand Down

0 comments on commit f63c45e

Please sign in to comment.