diff options
author | Arnaldo Carvalho de Melo <acme@mandriva.com> | 2005-08-10 12:59:38 -0300 |
---|---|---|
committer | David S. Miller <davem@sunset.davemloft.net> | 2005-08-29 15:56:28 -0700 |
commit | 8c60f3fab55712f23f2bd557ceedfbb00c649f37 (patch) | |
tree | a131a54e9790b1b85e5c7f78a2e74e33af2bbd87 /net/dccp/Makefile | |
parent | 540722ffc3a0d7e11d97a13e1ce6f3bc23b061c1 (diff) | |
download | linux-3.10-8c60f3fab55712f23f2bd557ceedfbb00c649f37.tar.gz linux-3.10-8c60f3fab55712f23f2bd557ceedfbb00c649f37.tar.bz2 linux-3.10-8c60f3fab55712f23f2bd557ceedfbb00c649f37.zip |
[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 c6e6ba55c36..25a50bdbf1b 100644 --- a/net/dccp/Makefile +++ b/net/dccp/Makefile @@ -1,5 +1,6 @@ obj-$(CONFIG_IP_DCCP) += dccp.o -dccp-y := ccid.o input.o ipv4.o minisocks.o options.o output.o proto.o timer.o +dccp-y := ccid.o input.o ipv4.o minisocks.o options.o output.o proto.o \ + timer.o packet_history.o obj-y += ccids/ |