Skip to content

Commit

Permalink
[DCCP]: Just move packet_history.[ch] to net/dccp/ccids/lib/
Browse files Browse the repository at this point in the history
Signed-off-by: Arnaldo Carvalho de Melo <acme@mandriva.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
  • Loading branch information
Arnaldo Carvalho de Melo authored and David S. Miller committed Aug 29, 2005
1 parent ae6706f commit 4524b25
Show file tree
Hide file tree
Showing 5 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion net/dccp/Makefile
Original file line number Diff line number Diff line change
@@ -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

Expand Down
2 changes: 1 addition & 1 deletion net/dccp/ccids/Makefile
Original file line number Diff line number Diff line change
@@ -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
2 changes: 1 addition & 1 deletion net/dccp/ccids/ccid3.c
Original file line number Diff line number Diff line change
Expand Up @@ -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"

Expand Down
File renamed without changes.
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down

0 comments on commit 4524b25

Please sign in to comment.