aboutsummaryrefslogtreecommitdiffstats
path: root/net/packet/af_packet.c
diff options
context:
space:
mode:
authordanborkmann@iogearbox.net <danborkmann@iogearbox.net>2012-08-19 23:34:03 -0400
committerDavid S. Miller <davem@davemloft.net>2012-08-23 01:58:27 -0400
commit9e67030af367ab524d0856af9e992de241eca3c7 (patch)
tree751ac8ad2e353622e966ad85f554ae5ba9e7d086 /net/packet/af_packet.c
parentbfdc587c5af4ff155cf702b972e8fcd66d77d5f2 (diff)
af_packet: use define instead of constant
Instead of using a hard-coded value for the status variable, it would make the code more readable to use its destined define from linux/if_packet.h. Signed-off-by: daniel.borkmann@tik.ee.ethz.ch Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/packet/af_packet.c')
-rw-r--r--net/packet/af_packet.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/net/packet/af_packet.c b/net/packet/af_packet.c
index fe0912f161ce..bfaa0a83f0eb 100644
--- a/net/packet/af_packet.c
+++ b/net/packet/af_packet.c
@@ -855,7 +855,8 @@ static void prb_fill_vlan_info(struct tpacket_kbdq_core *pkc,
855 ppd->hv1.tp_vlan_tci = vlan_tx_tag_get(pkc->skb); 855 ppd->hv1.tp_vlan_tci = vlan_tx_tag_get(pkc->skb);
856 ppd->tp_status = TP_STATUS_VLAN_VALID; 856 ppd->tp_status = TP_STATUS_VLAN_VALID;
857 } else { 857 } else {
858 ppd->hv1.tp_vlan_tci = ppd->tp_status = 0; 858 ppd->hv1.tp_vlan_tci = 0;
859 ppd->tp_status = TP_STATUS_AVAILABLE;
859 } 860 }
860} 861}
861 862
@@ -1951,7 +1952,7 @@ static int tpacket_snd(struct packet_sock *po, struct msghdr *msg)
1951 int tp_len, size_max; 1952 int tp_len, size_max;
1952 unsigned char *addr; 1953 unsigned char *addr;
1953 int len_sum = 0; 1954 int len_sum = 0;
1954 int status = 0; 1955 int status = TP_STATUS_AVAILABLE;
1955 int hlen, tlen; 1956 int hlen, tlen;
1956 1957
1957 mutex_lock(&po->pg_vec_lock); 1958 mutex_lock(&po->pg_vec_lock);