Don't call kfree_skb() with interrupts disabled.
[sliver-openvswitch.git] / datapath / Modules.mk
1 all_modules = $(dist_modules)
2 dist_modules = openflow unit
3
4 openflow_sources = \
5         chain.c \
6         crc32.c \
7         datapath.c \
8         dp_dev.c \
9         flow.c \
10         forward.c \
11         table-hash.c \
12         table-linear.c \
13         unit-exports.c
14
15 openflow_headers = \
16         chain.h \
17         compat.h \
18         crc32.h \
19         datapath.h \
20         dp_dev.h \
21         flow.h \
22         forward.h \
23         snap.h \
24         table.h \
25         unit.h
26
27 unit_sources = \
28         crc_t.c \
29         forward_t.c \
30         table_t.c \
31         unit.c
32
33 dist_sources = $(foreach module,$(dist_modules),$($(module)_sources))
34 dist_headers = $(foreach module,$(dist_modules),$($(module)_headers))
35 all_sources = $(foreach module,$(all_modules),$($(module)_sources))
36 all_headers = $(foreach module,$(all_modules),$($(module)_headers))
37 all_links = $(notdir $(all_sources))
38 all_objects = $(notdir $(patsubst %.c,%.o,$(all_sources)))