diff options
author | Arnaldo Carvalho de Melo <acme@mandriva.com> | 2005-08-10 11:59:38 -0400 |
---|---|---|
committer | David S. Miller <davem@sunset.davemloft.net> | 2005-08-29 18:56:28 -0400 |
commit | 8c60f3fab55712f23f2bd557ceedfbb00c649f37 (patch) | |
tree | a131a54e9790b1b85e5c7f78a2e74e33af2bbd87 /net/dccp/Makefile | |
parent | 540722ffc3a0d7e11d97a13e1ce6f3bc23b061c1 (diff) |
[CCID3]: Separate most of the packet history code
This also changes the list_for_each_entry_safe_continue behaviour to match its
kerneldoc comment, that is, to start after the pos passed.
Also adds several helper functions from previously open coded fragments, making
the code more clear.
Signed-off-by: Arnaldo Carvalho de Melo <acme@mandriva.com>
Diffstat (limited to 'net/dccp/Makefile')
-rw-r--r-- | net/dccp/Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/net/dccp/Makefile b/net/dccp/Makefile index c6e6ba55c36b..25a50bdbf1bb 100644 --- a/net/dccp/Makefile +++ b/net/dccp/Makefile | |||
@@ -1,5 +1,6 @@ | |||
1 | obj-$(CONFIG_IP_DCCP) += dccp.o | 1 | obj-$(CONFIG_IP_DCCP) += dccp.o |
2 | 2 | ||
3 | dccp-y := ccid.o input.o ipv4.o minisocks.o options.o output.o proto.o timer.o | 3 | dccp-y := ccid.o input.o ipv4.o minisocks.o options.o output.o proto.o \ |
4 | timer.o packet_history.o | ||
4 | 5 | ||
5 | obj-y += ccids/ | 6 | obj-y += ccids/ |