summaryrefslogtreecommitdiff
path: root/tools/include/linux/kern_levels.h
blob: 778ecb98448058096a4b588e96e169e7e3c10385 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
/* SPDX-License-Identifier: GPL-2.0 */
#ifndef __KERN_LEVELS_H__
#define __KERN_LEVELS_H__

#define KERN_SOH	""		/* ASCII Start Of Header */
#define KERN_SOH_ASCII	''

#define KERN_EMERG	KERN_SOH ""	/* system is unusable */
#define KERN_ALERT	KERN_SOH ""	/* action must be taken immediately */
#define KERN_CRIT	KERN_SOH ""	/* critical conditions */
#define KERN_ERR	KERN_SOH ""	/* error conditions */
#define KERN_WARNING	KERN_SOH ""	/* warning conditions */
#define KERN_NOTICE	KERN_SOH ""	/* normal but significant condition */
#define KERN_INFO	KERN_SOH ""	/* informational */
#define KERN_DEBUG	KERN_SOH ""	/* debug-level messages */

#define KERN_DEFAULT	KERN_SOH ""	/* the default kernel loglevel */

/*
 * Annotation for a "continued" line of log printout (only done after a
 * line that had no enclosing \n). Only to be used by core/arch code
 * during early bootup (a continued line is not SMP-safe otherwise).
 */
#define KERN_CONT	""

#endif
6-10USB: Follow-up to SPDX GPL-2.0+ identifiers addition - remove now useless com...Christophe JAILLET 2022-04-14cdc_ether: export usbnet_cdc_zte_rx_fixupLech Perczak 2021-04-06usbnet: add method for reporting speed without MIIOliver Neukum 2021-04-06usbnet: add _mii suffix to usbnet_set/get_link_ksettingsOliver Neukum 2021-01-20net: usb: cdc_ncm: don't spew notificationsGrant Grundler 2020-11-12net: usb: switch to dev_get_tstats64 and remove usbnet_get_stats64 aliasHeiner Kallweit 2020-11-12usbnet: switch to core handling of rx/tx byte/packet countersHeiner Kallweit 2020-07-17net: usbnet: export usbnet_set_rx_mode()Bjørn Mork 2020-07-17net: cdc_ether: export usbnet_cdc_update_filterMiguel Rodríguez Pérez 2019-12-12netdev: pass the stuck queue to the timeout handlerMichael S. Tsirkin 2018-10-02net: usbnet: make driver_info constBen Dooks 2017-12-07usbnet: fix alignment for frames with no ethernet headerBjørn Mork 2017-11-04USB: add SPDX identifiers to all remaining files in drivers/usb/Greg Kroah-Hartman 2017-05-23cdc-ether: divorce initialisation with a filter reset and a generic methodOliver Neukum 2017-04-03net: usbnet: support 64bit statsGreg Ungerer 2017-03-21net: usb: usb: remove old api ethtool_{get|set}_settingsPhilippe Reynes 2017-03-21net: usb: usbnet: add new api ethtool_{get|set}_link_ksettingsPhilippe Reynes 2015-03-29usbnet: Fix tx_bytes statistic running backward in cdc_ncmBen Hutchings 2015-03-29usbnet: Fix tx_packets stat for FLAG_MULTI_FRAME driversBen Hutchings 2014-10-28usbnet: add a callback for set_rx_modeOlivier Blin 2014-08-02cdc_subset: deal with a device that needs reset for timeoutOliver Neukum 2014-07-30Revert "cdc_subset: deal with a device that needs reset for timeout"Linus Torvalds 2014-07-29cdc_subset: deal with a device that needs reset for timeoutOliver Neukum 2014-03-27usbnet: include wait queue head in device structureOliver Neukum 2013-09-28USBNET: fix handling padding packetMing Lei 2013-09-05Merge git://git.kernel.org/pub/scm/linux/kernel/git/davem/net-nextLinus Torvalds