diff options
author | Paul Moore <paul.moore@hp.com> | 2008-10-10 18:16:32 +0400 |
---|---|---|
committer | Paul Moore <paul.moore@hp.com> | 2008-10-10 18:16:32 +0400 |
commit | 61e1068219950c672ce979719ad2be3aadb00d7d (patch) | |
tree | da987ee4b5be90f95ca8e0b20bd872ff75d82934 /net/netlabel/Makefile | |
parent | b1edeb102397546438ab4624489c6ccd7b410d97 (diff) | |
download | linux-61e1068219950c672ce979719ad2be3aadb00d7d.tar.xz |
netlabel: Add a generic way to create ordered linked lists of network addrs
Create an ordered IP address linked list mechanism similar to the core
kernel's linked list construct. The idea behind this list functionality
is to create an extensibile linked list ordered by IP address mask to
ease the matching of network addresses. The linked list is ordered with
larger address masks at the front of the list and shorter address masks
at the end to facilitate overriding network entries with individual host
or subnet entries.
Signed-off-by: Paul Moore <paul.moore@hp.com>
Reviewed-by: James Morris <jmorris@namei.org>
Diffstat (limited to 'net/netlabel/Makefile')
-rw-r--r-- | net/netlabel/Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/net/netlabel/Makefile b/net/netlabel/Makefile index 8af18c0a47d9..ea750e9df65f 100644 --- a/net/netlabel/Makefile +++ b/net/netlabel/Makefile @@ -5,7 +5,8 @@ # # base objects -obj-y := netlabel_user.o netlabel_kapi.o netlabel_domainhash.o +obj-y := netlabel_user.o netlabel_kapi.o +obj-y += netlabel_domainhash.o netlabel_addrlist.o # management objects obj-y += netlabel_mgmt.o |