summaryrefslogtreecommitdiffstats
path: root/sys/netipsec
diff options
context:
space:
mode:
authorglebius <glebius@FreeBSD.org>2014-09-19 10:18:14 +0000
committerglebius <glebius@FreeBSD.org>2014-09-19 10:18:14 +0000
commit56e9d8032968a69de5184a445d47b6f0b5636b14 (patch)
tree87fbf19915889d9fc1801b45e046376bec3ab891 /sys/netipsec
parent2ca697202cdd049031824b81211dca7d1ad78489 (diff)
downloadFreeBSD-src-56e9d8032968a69de5184a445d47b6f0b5636b14.zip
FreeBSD-src-56e9d8032968a69de5184a445d47b6f0b5636b14.tar.gz
Mechanically convert to if_inc_counter().
Diffstat (limited to 'sys/netipsec')
-rw-r--r--sys/netipsec/ipsec_input.c8
-rw-r--r--sys/netipsec/ipsec_output.c8
2 files changed, 8 insertions, 8 deletions
diff --git a/sys/netipsec/ipsec_input.c b/sys/netipsec/ipsec_input.c
index 717ae9a..a305bb6 100644
--- a/sys/netipsec/ipsec_input.c
+++ b/sys/netipsec/ipsec_input.c
@@ -376,8 +376,8 @@ ipsec4_common_input_cb(struct mbuf *m, struct secasvar *sav,
prot = ip->ip_p;
#ifdef DEV_ENC
- encif->if_ipackets++;
- encif->if_ibytes += m->m_pkthdr.len;
+ if_inc_counter(encif, IFCOUNTER_IPACKETS, 1);
+ if_inc_counter(encif, IFCOUNTER_IBYTES, m->m_pkthdr.len);
/*
* Pass the mbuf to enc0 for bpf and pfil. We will filter the IPIP
@@ -663,8 +663,8 @@ ipsec6_common_input_cb(struct mbuf *m, struct secasvar *sav, int skip, int proto
m_copydata(m, protoff, 1, (unsigned char *) &prot);
#ifdef DEV_ENC
- encif->if_ipackets++;
- encif->if_ibytes += m->m_pkthdr.len;
+ if_inc_counter(encif, IFCOUNTER_IPACKETS, 1);
+ if_inc_counter(encif, IFCOUNTER_IBYTES, m->m_pkthdr.len);
/*
* Pass the mbuf to enc0 for bpf and pfil. We will filter the IPIP
diff --git a/sys/netipsec/ipsec_output.c b/sys/netipsec/ipsec_output.c
index 8566bb4..1f03196 100644
--- a/sys/netipsec/ipsec_output.c
+++ b/sys/netipsec/ipsec_output.c
@@ -441,8 +441,8 @@ ipsec4_process_packet(
sav = isr->sav;
#ifdef DEV_ENC
- encif->if_opackets++;
- encif->if_obytes += m->m_pkthdr.len;
+ if_inc_counter(encif, IFCOUNTER_OPACKETS, 1);
+ if_inc_counter(encif, IFCOUNTER_OBYTES, m->m_pkthdr.len);
/* pass the mbuf to enc0 for bpf processing */
ipsec_bpf(m, sav, AF_INET, ENC_OUT|ENC_BEFORE);
@@ -641,8 +641,8 @@ ipsec6_process_packet(
dst = &sav->sah->saidx.dst;
#ifdef DEV_ENC
- encif->if_opackets++;
- encif->if_obytes += m->m_pkthdr.len;
+ if_inc_counter(encif, IFCOUNTER_OPACKETS, 1);
+ if_inc_counter(encif, IFCOUNTER_OBYTES, m->m_pkthdr.len);
/* pass the mbuf to enc0 for bpf processing */
ipsec_bpf(m, isr->sav, AF_INET6, ENC_OUT|ENC_BEFORE);
OpenPOWER on IntegriCloud