Skip to content

Commit

Permalink
net: cleanup unused macros in net directory
Browse files Browse the repository at this point in the history
Clean up some unused macros in net/*.
1. be left for code change. e.g. PGV_FROM_VMALLOC, PGV_FROM_VMALLOC, KMEM_SAFETYZONE.
2. never be used since introduced to kernel.
   e.g. P9_RDMA_MAX_SGE, UTIL_CTRL_PKT_SIZE.

Signed-off-by: Shan Wei <[email protected]>
Acked-by: Sjur Braendeland <[email protected]>
Signed-off-by: David S. Miller <[email protected]>
  • Loading branch information
Shan Wei authored and davem330 committed Jan 20, 2011
1 parent 6997e61 commit 441c793
Show file tree
Hide file tree
Showing 10 changed files with 2 additions and 12 deletions.
1 change: 0 additions & 1 deletion net/9p/trans_rdma.c
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,6 @@
* safely advertise a maxsize
* of 64k */

#define P9_RDMA_MAX_SGE (P9_RDMA_MAXSIZE >> PAGE_SHIFT)
/**
* struct p9_trans_rdma - RDMA transport instance
*
Expand Down
2 changes: 0 additions & 2 deletions net/caif/cfcnfg.c
Original file line number Diff line number Diff line change
Expand Up @@ -23,10 +23,8 @@
#include <asm/atomic.h>

#define MAX_PHY_LAYERS 7
#define PHY_NAME_LEN 20

#define container_obj(layr) container_of(layr, struct cfcnfg, layer)
#define RFM_FRAGMENT_SIZE 4030

/* Information about CAIF physical interfaces held by Config Module in order
* to manage physical interfaces
Expand Down
1 change: 0 additions & 1 deletion net/caif/cfdgml.c
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,6 @@
#define DGM_CMD_BIT 0x80
#define DGM_FLOW_OFF 0x81
#define DGM_FLOW_ON 0x80
#define DGM_CTRL_PKT_SIZE 1
#define DGM_MTU 1500

static int cfdgml_receive(struct cflayer *layr, struct cfpkt *pkt);
Expand Down
1 change: 0 additions & 1 deletion net/caif/cfserl.c
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,6 @@ struct cfserl {
spinlock_t sync;
bool usestx;
};
#define STXLEN(layr) (layr->usestx ? 1 : 0)

static int cfserl_receive(struct cflayer *layr, struct cfpkt *pkt);
static int cfserl_transmit(struct cflayer *layr, struct cfpkt *pkt);
Expand Down
2 changes: 1 addition & 1 deletion net/caif/cfutill.c
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
#define UTIL_REMOTE_SHUTDOWN 0x82
#define UTIL_FLOW_OFF 0x81
#define UTIL_FLOW_ON 0x80
#define UTIL_CTRL_PKT_SIZE 1

static int cfutill_receive(struct cflayer *layr, struct cfpkt *pkt);
static int cfutill_transmit(struct cflayer *layr, struct cfpkt *pkt);

Expand Down
2 changes: 1 addition & 1 deletion net/caif/cfveil.c
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
#define VEI_FLOW_OFF 0x81
#define VEI_FLOW_ON 0x80
#define VEI_SET_PIN 0x82
#define VEI_CTRL_PKT_SIZE 1

#define container_obj(layr) container_of(layr, struct cfsrvl, layer)

static int cfvei_receive(struct cflayer *layr, struct cfpkt *pkt);
Expand Down
1 change: 0 additions & 1 deletion net/decnet/dn_table.c
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,6 @@ struct dn_hash
};

#define dz_key_0(key) ((key).datum = 0)
#define dz_prefix(key,dz) ((key).datum)

#define for_nexthops(fi) { int nhsel; const struct dn_fib_nh *nh;\
for(nhsel = 0, nh = (fi)->fib_nh; nhsel < (fi)->fib_nhs; nh++, nhsel++)
Expand Down
1 change: 0 additions & 1 deletion net/packet/af_packet.c
Original file line number Diff line number Diff line change
Expand Up @@ -164,7 +164,6 @@ struct packet_mreq_max {
static int packet_set_ring(struct sock *sk, struct tpacket_req *req,
int closing, int tx_ring);

#define PGV_FROM_VMALLOC 1
struct pgv {
char *buffer;
};
Expand Down
1 change: 0 additions & 1 deletion net/rds/rds.h
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,6 @@ rdsdebug(char *fmt, ...)
#define RDS_FRAG_SIZE ((unsigned int)(1 << RDS_FRAG_SHIFT))

#define RDS_CONG_MAP_BYTES (65536 / 8)
#define RDS_CONG_MAP_LONGS (RDS_CONG_MAP_BYTES / sizeof(unsigned long))
#define RDS_CONG_MAP_PAGES (PAGE_ALIGN(RDS_CONG_MAP_BYTES) / PAGE_SIZE)
#define RDS_CONG_MAP_PAGE_BITS (PAGE_SIZE * 8)

Expand Down
2 changes: 0 additions & 2 deletions net/wanrouter/wanmain.c
Original file line number Diff line number Diff line change
Expand Up @@ -59,8 +59,6 @@
#include <asm/uaccess.h> /* copy_to/from_user */
#include <linux/init.h> /* __initfunc et al. */

#define KMEM_SAFETYZONE 8

#define DEV_TO_SLAVE(dev) (*((struct net_device **)netdev_priv(dev)))

/*
Expand Down

0 comments on commit 441c793

Please sign in to comment.