Module Name: src
Committed By: msaitoh
Date: Tue Oct 1 08:13:16 UTC 2019
Modified Files:
src/sys/net: if_ethersubr.c
Log Message:
Increment if_iqdrops when dropping an oversized frame.
To generate a diff of this commit:
cvs rdiff -u -r1.276 -r1.277 src/sys/net/if_ethersubr.c
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: src/sys/net/if_ethersubr.c
diff -u src/sys/net/if_ethersubr.c:1.276 src/sys/net/if_ethersubr.c:1.277
--- src/sys/net/if_ethersubr.c:1.276 Wed Jul 17 03:26:24 2019
+++ src/sys/net/if_ethersubr.c Tue Oct 1 08:13:16 2019
@@ -1,4 +1,4 @@
-/* $NetBSD: if_ethersubr.c,v 1.276 2019/07/17 03:26:24 msaitoh Exp $ */
+/* $NetBSD: if_ethersubr.c,v 1.277 2019/10/01 08:13:16 msaitoh Exp $ */
/*
* Copyright (C) 1995, 1996, 1997, and 1998 WIDE Project.
@@ -61,7 +61,7 @@
*/
#include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: if_ethersubr.c,v 1.276 2019/07/17 03:26:24 msaitoh Exp $");
+__KERNEL_RCSID(0, "$NetBSD: if_ethersubr.c,v 1.277 2019/10/01 08:13:16 msaitoh Exp $");
#ifdef _KERNEL_OPT
#include "opt_inet.h"
@@ -619,6 +619,7 @@ ether_input(struct ifnet *ifp, struct mb
ifp->if_xname, m->m_pkthdr.len);
}
mutex_exit(&bigpktpps_lock);
+ ifp->if_iqdrops++;
m_freem(m);
return;
}