Page Menu
Home
FreeBSD
Search
Configure Global Search
Log In
Files
F166848962
D7963.id20520.diff
No One
Temporary
Actions
View File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Flag For Later
Award Token
Size
935 B
Referenced Files
None
Subscribers
None
D7963.id20520.diff
View Options
Index: sys/dev/hyperv/netvsc/hv_netvsc_drv_freebsd.c
===================================================================
--- sys/dev/hyperv/netvsc/hv_netvsc_drv_freebsd.c
+++ sys/dev/hyperv/netvsc/hv_netvsc_drv_freebsd.c
@@ -2358,7 +2358,8 @@
lroent_cnt = hn_lro_entry_count;
if (lroent_cnt < TCP_LRO_ENTRIES)
lroent_cnt = TCP_LRO_ENTRIES;
- device_printf(dev, "LRO: entry count %d\n", lroent_cnt);
+ if (bootverbose)
+ device_printf(dev, "LRO: entry count %d\n", lroent_cnt);
#endif
#endif /* INET || INET6 */
@@ -3329,8 +3330,10 @@
*nsubch = 0;
return (0);
}
- if_printf(sc->hn_ifp, "RX rings offered %u, requested %d\n",
- rxr_cnt, nchan);
+ if (bootverbose) {
+ if_printf(sc->hn_ifp, "RX rings offered %u, requested %d\n",
+ rxr_cnt, nchan);
+ }
if (nchan > rxr_cnt)
nchan = rxr_cnt;
@@ -3339,7 +3342,7 @@
*nsubch = 0;
return (0);
}
-
+
/*
* Allocate sub-channels from NVS.
*/
File Metadata
Details
Attached
Mime Type
text/plain
Expires
Tue, Aug 18, 2:18 AM (8 h, 53 m)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
36882304
Default Alt Text
D7963.id20520.diff (935 B)
Attached To
Mode
D7963: hyperv/hn: Put debug messages under bootverbose
Attached
Detach File
Event Timeline
Log In to Comment