Skip to content

Commit

Permalink
Merge r198022 from projects/tcp_cc_head:
Browse files Browse the repository at this point in the history
Catch up with vimage changes.
  • Loading branch information
lastewart committed Oct 13, 2009
1 parent 3ba5340 commit c33524c
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 8 deletions.
5 changes: 3 additions & 2 deletions sys/netinet/cc.c
Original file line number Diff line number Diff line change
Expand Up @@ -47,14 +47,15 @@ __FBSDID("$FreeBSD$");
#include <sys/socket.h>
#include <sys/socketvar.h>
#include <sys/sysctl.h>
#include <sys/vimage.h>

#include <net/if.h>
#include <net/if_var.h>

#include <netinet/cc.h>
#include <netinet/cc_module.h>
#include <netinet/vinet.h>
#include <netinet/in.h>
#include <netinet/in_pcb.h>
#include <netinet/tcp_var.h>

/*
* List of available cc algorithms on the current system. First element
Expand Down
2 changes: 0 additions & 2 deletions sys/netinet/cc_cubic.c
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,6 @@ __FBSDID("$FreeBSD$");
#include <sys/sysctl.h>
#include <sys/systm.h>
#include <sys/time.h>
#include <sys/vimage.h>

#include <net/if.h>

Expand All @@ -59,7 +58,6 @@ __FBSDID("$FreeBSD$");
#include <netinet/tcp_seq.h>
#include <netinet/tcp_timer.h>
#include <netinet/tcp_var.h>
#include <netinet/vinet.h>

int cubic_mod_init(void);
int cubic_cb_init(struct tcpcb *tp);
Expand Down
2 changes: 0 additions & 2 deletions sys/netinet/cc_htcp.c
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,6 @@ __FBSDID("$FreeBSD$");
#include <sys/socketvar.h>
#include <sys/sysctl.h>
#include <sys/systm.h>
#include <sys/vimage.h>

#include <net/if.h>

Expand All @@ -62,7 +61,6 @@ __FBSDID("$FreeBSD$");
#include <netinet/tcp_seq.h>
#include <netinet/tcp_timer.h>
#include <netinet/tcp_var.h>
#include <netinet/vinet.h>

/* useful defines */
#define MODNAME "HTCP congestion control"
Expand Down
5 changes: 3 additions & 2 deletions sys/netinet/cc_newreno.c
Original file line number Diff line number Diff line change
Expand Up @@ -37,15 +37,16 @@ __FBSDID("$FreeBSD$");
#include <sys/socket.h>
#include <sys/socketvar.h>
#include <sys/sysctl.h>
#include <sys/vimage.h>

#include <net/if.h>
#include <net/if_var.h>

#include <netinet/cc.h>
#include <netinet/cc_module.h>
#include <netinet/in.h>
#include <netinet/in_pcb.h>
#include <netinet/tcp_seq.h>
#include <netinet/vinet.h>
#include <netinet/tcp_var.h>

/*
* NewReno CC functions
Expand Down

0 comments on commit c33524c

Please sign in to comment.