[DCCP]: Just move packet_history.[ch] to net/dccp/ccids/lib/
authorArnaldo Carvalho de Melo <acme@mandriva.com>
Sun, 28 Aug 2005 02:18:26 +0000 (23:18 -0300)
committerDavid S. Miller <davem@sunset.davemloft.net>
Mon, 29 Aug 2005 23:12:25 +0000 (16:12 -0700)
Signed-off-by: Arnaldo Carvalho de Melo <acme@mandriva.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
net/dccp/Makefile
net/dccp/ccids/Makefile
net/dccp/ccids/ccid3.c
net/dccp/ccids/lib/packet_history.c [moved from net/dccp/packet_history.c with 100% similarity]
net/dccp/ccids/lib/packet_history.h [moved from net/dccp/packet_history.h with 99% similarity]

index 44a867f..fb97bb0 100644 (file)
@@ -1,7 +1,7 @@
 obj-$(CONFIG_IP_DCCP) += dccp.o
 
 dccp-y := ccid.o input.o ipv4.o minisocks.o options.o output.o proto.o \
-         timer.o packet_history.o
+         timer.o
 
 obj-$(CONFIG_INET_DCCP_DIAG) += dccp_diag.o
 
index 323b68f..29eb1b6 100644 (file)
@@ -1,3 +1,3 @@
 obj-$(CONFIG_IP_DCCP_CCID3) += dccp_ccid3.o
 
-dccp_ccid3-y := ccid3.o lib/loss_interval.o
+dccp_ccid3-y := ccid3.o lib/loss_interval.o lib/packet_history.o
index 7468928..12548fb 100644 (file)
@@ -37,7 +37,7 @@
 #include <linux/config.h>
 #include "../ccid.h"
 #include "../dccp.h"
-#include "../packet_history.h"
+#include "lib/packet_history.h"
 #include "lib/loss_interval.h"
 #include "ccid3.h"
 
similarity index 99%
rename from net/dccp/packet_history.h
rename to net/dccp/ccids/lib/packet_history.h
index 2e5ba34..235828d 100644 (file)
@@ -42,7 +42,7 @@
 #include <linux/slab.h>
 #include <linux/time.h>
 
-#include "dccp.h"
+#include "../../dccp.h"
 
 struct dccp_tx_hist_entry {
        struct list_head dccphtx_node;