Make IFMEDIA_DEBUG a kernel option.

Sponsored by:	Nginx, Inc.
This commit is contained in:
Gleb Smirnoff 2015-04-21 10:35:23 +00:00
parent 9dc634de35
commit 41c1a23326
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=281824
3 changed files with 4 additions and 0 deletions

View File

@ -2836,6 +2836,7 @@ options INIT_PATH=/sbin/init:/rescue/init
options BUS_DEBUG # enable newbus debugging
options DEBUG_VFS_LOCKS # enable VFS lock debugging
options SOCKBUF_DEBUG # enable sockbuf last record/mb tail checking
options IFMEDIA_DEBUG # enable debugging in net/if_media.c
#
# Verbose SYSINIT

View File

@ -553,6 +553,7 @@ LPT_DEBUG opt_lpt.h
PLIP_DEBUG opt_plip.h
LOCKF_DEBUG opt_debug_lockf.h
SI_DEBUG opt_debug_si.h
IFMEDIA_DEBUG opt_ifmedia.h
# Fb options
FB_DEBUG opt_fb.h

View File

@ -46,6 +46,8 @@
* to implement this interface.
*/
#include "opt_ifmedia.h"
#include <sys/param.h>
#include <sys/systm.h>
#include <sys/socket.h>