Lines Matching +full:per +full:- +full:module
1 .. SPDX-License-Identifier: GPL-2.0
10 -------
22 always implemented within +-1 of the specified level. Drivers tended
25 - 0 Minimal messages, only essential information on fatal errors.
26 - 1 Standard messages, initialization status. No run-time messages
27 - 2 Special media selection messages, generally timer-driver.
28 - 3 Interface starts and stops, including normal status messages
29 - 4 Tx and Rx frame error messages, and abnormal driver operation
30 - 5 Tx packet queue information, interrupt events.
31 - 6 Status on each completed Tx packet and received Rx packets
32 - 7 Initial contents of Tx and Rx packets
37 were consistently renamed to "debug" and allowed to be set as a module
44 - Using an ioctl() call to modify the level.
45 - Per-interface rather than per-driver message level setting.
46 - More selective control over the type of messages emitted.
53 - Retaining the per-driver integer variable "debug" as a module
56 - Adding a per-interface private variable named "msg_enable". The
63 debug < 0 ? 0 : 1 << min(sizeof(int)-1, debug)
72 if (np->msg_enable & NETIF_MSG_LINK)