Module Name: src Committed By: yamaguchi Date: Thu Jan 16 07:11:50 UTC 2020
Modified Files: src/sys/dev/pci: files.pci if_ixl.c Log Message: Use def{flag,param} for parameters in ixl(4) To generate a diff of this commit: cvs rdiff -u -r1.419 -r1.420 src/sys/dev/pci/files.pci cvs rdiff -u -r1.20 -r1.21 src/sys/dev/pci/if_ixl.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/dev/pci/files.pci diff -u src/sys/dev/pci/files.pci:1.419 src/sys/dev/pci/files.pci:1.420 --- src/sys/dev/pci/files.pci:1.419 Wed Jan 1 10:11:21 2020 +++ src/sys/dev/pci/files.pci Thu Jan 16 07:11:50 2020 @@ -1,4 +1,4 @@ -# $NetBSD: files.pci,v 1.419 2020/01/01 10:11:21 ryo Exp $ +# $NetBSD: files.pci,v 1.420 2020/01/16 07:11:50 yamaguchi Exp $ # # Config file and device description for machine-independent PCI code. # Included by ports that need it. Requires that the SCSI files be @@ -1185,3 +1185,6 @@ file dev/pci/qat/qat_d15xx.c qat device ixl: ether, ifnet, arp attach ixl at pci file dev/pci/if_ixl.c ixl +defflag opt_if_ixl.h IXL_DEBUG +defparam opt_if_ixl.h IXL_STATS_INTERVAL_MSEC + IXL_QUEUE_NUM Index: src/sys/dev/pci/if_ixl.c diff -u src/sys/dev/pci/if_ixl.c:1.20 src/sys/dev/pci/if_ixl.c:1.21 --- src/sys/dev/pci/if_ixl.c:1.20 Wed Jan 15 08:25:01 2020 +++ src/sys/dev/pci/if_ixl.c Thu Jan 16 07:11:50 2020 @@ -1,4 +1,4 @@ -/* $NetBSD: if_ixl.c,v 1.20 2020/01/15 08:25:01 yamaguchi Exp $ */ +/* $NetBSD: if_ixl.c,v 1.21 2020/01/16 07:11:50 yamaguchi Exp $ */ /* * Copyright (c) 2013-2015, Intel Corporation @@ -77,6 +77,7 @@ #ifdef _KERNEL_OPT #include "opt_net_mpsafe.h" +#include "opt_if_ixl.h" #endif #include <sys/param.h>