[INET_DIAG]: Rename tcp_diag.[ch] to inet_diag.[ch]

Next changeset will introduce net/ipv4/tcp_diag.c, moving the code that was put
transitioanlly in inet_diag.c.

Signed-off-by: Arnaldo Carvalho de Melo <acme@mandriva.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
Arnaldo Carvalho de Melo 2005-08-12 12:56:38 -03:00 committed by David S. Miller
parent 73c1f4a033
commit a8c2190ee7
6 changed files with 16 additions and 15 deletions

View File

@ -12,7 +12,7 @@
#include <linux/config.h> #include <linux/config.h>
#include <linux/module.h> #include <linux/module.h>
#include <linux/tcp_diag.h> #include <linux/inet_diag.h>
#include "dccp.h" #include "dccp.h"

View File

@ -30,7 +30,7 @@ obj-$(CONFIG_IP_ROUTE_MULTIPATH_WRANDOM) += multipath_wrandom.o
obj-$(CONFIG_IP_ROUTE_MULTIPATH_DRR) += multipath_drr.o obj-$(CONFIG_IP_ROUTE_MULTIPATH_DRR) += multipath_drr.o
obj-$(CONFIG_NETFILTER) += netfilter/ obj-$(CONFIG_NETFILTER) += netfilter/
obj-$(CONFIG_IP_VS) += ipvs/ obj-$(CONFIG_IP_VS) += ipvs/
obj-$(CONFIG_IP_INET_DIAG) += tcp_diag.o obj-$(CONFIG_IP_INET_DIAG) += inet_diag.o
obj-$(CONFIG_IP_ROUTE_MULTIPATH_CACHED) += multipath.o obj-$(CONFIG_IP_ROUTE_MULTIPATH_CACHED) += multipath.o
obj-$(CONFIG_TCP_CONG_BIC) += tcp_bic.o obj-$(CONFIG_TCP_CONG_BIC) += tcp_bic.o
obj-$(CONFIG_TCP_CONG_WESTWOOD) += tcp_westwood.o obj-$(CONFIG_TCP_CONG_WESTWOOD) += tcp_westwood.o

View File

@ -32,7 +32,7 @@
#include <linux/inet.h> #include <linux/inet.h>
#include <linux/stddef.h> #include <linux/stddef.h>
#include <linux/tcp_diag.h> #include <linux/inet_diag.h>
static const struct inet_diag_handler **inet_diag_table; static const struct inet_diag_handler **inet_diag_table;
@ -311,11 +311,11 @@ static int inet_diag_bc_run(const void *bc, int len,
yes = !(entry->userlocks & SOCK_BINDPORT_LOCK); yes = !(entry->userlocks & SOCK_BINDPORT_LOCK);
break; break;
case INET_DIAG_BC_S_COND: case INET_DIAG_BC_S_COND:
case INET_DIAG_BC_D_COND: case INET_DIAG_BC_D_COND: {
{ struct inet_diag_hostcond *cond;
struct inet_diag_hostcond *cond = (struct inet_diag_hostcond*)(op+1);
u32 *addr; u32 *addr;
cond = (struct inet_diag_hostcond *)(op + 1);
if (cond->port != -1 && if (cond->port != -1 &&
cond->port != (op->code == INET_DIAG_BC_S_COND ? cond->port != (op->code == INET_DIAG_BC_S_COND ?
entry->sport : entry->dport)) { entry->sport : entry->dport)) {
@ -337,7 +337,8 @@ static int inet_diag_bc_run(const void *bc, int len,
cond->family == AF_INET) { cond->family == AF_INET) {
if (addr[0] == 0 && addr[1] == 0 && if (addr[0] == 0 && addr[1] == 0 &&
addr[2] == htonl(0xffff) && addr[2] == htonl(0xffff) &&
bitstring_match(addr+3, cond->addr, cond->prefix_len)) bitstring_match(addr + 3, cond->addr,
cond->prefix_len))
break; break;
} }
yes = 0; yes = 0;

View File

@ -35,7 +35,7 @@
#include <linux/mm.h> #include <linux/mm.h>
#include <linux/module.h> #include <linux/module.h>
#include <linux/skbuff.h> #include <linux/skbuff.h>
#include <linux/tcp_diag.h> #include <linux/inet_diag.h>
#include <net/tcp.h> #include <net/tcp.h>

View File

@ -8,7 +8,7 @@
#include <linux/mm.h> #include <linux/mm.h>
#include <linux/module.h> #include <linux/module.h>
#include <linux/skbuff.h> #include <linux/skbuff.h>
#include <linux/tcp_diag.h> #include <linux/inet_diag.h>
#include <net/tcp.h> #include <net/tcp.h>
/* TCP Westwood structure */ /* TCP Westwood structure */