Home
last modified time | relevance | path

Searched full:logging (Results 1 – 25 of 496) sorted by relevance

12345678910>>...20

/linux/tools/usb/
H A Dp9_fwd.py6 import logging
33 if not logging.root.isEnabledFor(logging.TRACE):
41 logging.root.log(logging.TRACE, "%s", line)
62 logging.info(f"found device: {dev.bus}/{dev.address} located at {path_from_usb_dev(dev)}")
81 logging.info(f"claiming interface:\n{usb9pfs}")
93 logging.info("interface claimed")
103 logging.info("connected to server")
110 logging.log(logging.TRACE, "c2s: reading")
113 logging.log(logging.TRACE, "c2s: reading timed out")
117 logging.debug("c2s: reading failed with %s, retrying", repr(e))
[all …]
/linux/scripts/
H A Dchecktransupdate.py29 import logging
46 logging.debug(command)
53 logging.debug("Result: %s", result[0])
69 logging.debug("tracked origin commit id: %s", o_from_t["hash"])
101 logging.debug("tracked origin commit id: %s", o_from_t["hash"])
108 logging.debug(command)
119 logging.debug(command)
134 logging.error("Cannot find the origin path for {file_path}")
141 logging.error("Cannot find the latest commit for %s", file_path)
150 logging
[all...]
H A Dgenerate_rust_analyzer.py8 import logging
160 logging.info("Checking %s", path)
168 logging.info("Adding %s", name)
190 logging.basicConfig(
192 level=logging.INFO if args.verbose else logging.WARNING
H A Dkernel-doc108 import logging
171 class MsgFormatter(logging.Formatter):
176 return logging.Formatter.format(self, record)
266 logger = logging.getLogger()
269 logger.setLevel(logging.INFO)
271 logger.setLevel(logging.DEBUG)
275 handler = logging.StreamHandler()
H A Dkernel-doc.py108 import logging
171 class MsgFormatter(logging.Formatter):
176 return logging.Formatter.format(self, record)
266 logger = logging.getLogger()
269 logger.setLevel(logging.INFO)
271 logger.setLevel(logging.DEBUG)
275 handler = logging.StreamHandler()
/linux/tools/perf/ui/
H A Dutil.c7 * Default error logging functions
62 * perf_error__register - Register error logging functions
63 * @eops: The pointer to error logging function struct
65 * Register UI-specific error logging functions. Before calling this,
66 * other logging functions should be unregistered, if any.
78 * perf_error__unregister - Unregister error logging functions
79 * @eops: The pointer to error logging function struct
81 * Unregister already registered error logging functions.
/linux/tools/testing/selftests/drivers/net/
H A Dnetpoll_basic.py20 import logging
43 # Configure logging
44 logging.basicConfig(
45 level=logging.INFO,
88 logging.debug("Setting ring size to %d/%d", rxs, txs)
129 logging.debug("calling: ethtool %s", cmdline)
150 logging.debug("Using netconsole name: %s", target_name)
153 logging.debug(
165 logging.debug("Writing %s to %s", key, path)
178 logging.debug(
[all …]
/linux/drivers/scsi/libfc/
H A Dfc_libfc.h11 #define FC_LIBFC_LOGGING 0x01 /* General logging, not categorized */
12 #define FC_LPORT_LOGGING 0x02 /* lport layer logging */
13 #define FC_DISC_LOGGING 0x04 /* discovery layer logging */
14 #define FC_RPORT_LOGGING 0x08 /* rport layer logging */
15 #define FC_FCP_LOGGING 0x10 /* I/O path logging */
16 #define FC_EM_LOGGING 0x20 /* Exchange Manager logging */
17 #define FC_EXCH_LOGGING 0x40 /* Exchange/Sequence logging */
18 #define FC_SCSI_LOGGING 0x80 /* SCSI logging (mostly error handling) */
/linux/Documentation/admin-guide/device-mapper/
H A Ddm-log.rst2 Device-Mapper Logging
4 The device-mapper logging code is used by some of the device-mapper
14 There is a generic logging interface that the device-mapper RAID
15 implementations use to perform logging operations (see
17 logging implementations are available and provide different
31 logging state survives reboots/crashes.
44 logging requests to userspace, where a daemon receives and processes the
/linux/tools/testing/selftests/tpm2/
H A Dtpm2_tests.py10 import logging
240 logging.basicConfig(filename='SpaceTest.log', level=logging.DEBUG)
243 log = logging.getLogger(__name__)
257 log = logging.getLogger(__name__)
267 log = logging.getLogger(__name__)
284 log = logging.getLogger(__name__)
308 logging.basicConfig(filename='AsyncTest.log', level=logging.DEBUG)
311 log = logging.getLogger(__name__)
320 log = logging.getLogger(__name__)
/linux/drivers/md/dm-vdo/
H A Dmemory-alloc.h35 * @what: What is being allocated (for error logging)
60 * Allocate one or more elements of the indicated type, logging an error if the allocation fails.
65 * @WHAT: What is being allocated (for error logging)
75 * logging an error if the allocation fails. The memory will be zeroed.
81 * @WHAT: What is being allocated (for error logging)
101 * Allocate memory starting on a cache line boundary, logging an error if the allocation fails. The
105 * @what: What is being allocated (for error logging)
120 * @what: What is being allocated (for error logging)
/linux/drivers/scsi/fcoe/
H A Dlibfcoe.h6 #define LIBFCOE_LOGGING 0x01 /* General logging, not categorized */
7 #define LIBFCOE_FIP_LOGGING 0x02 /* FIP logging */
8 #define LIBFCOE_TRANSPORT_LOGGING 0x04 /* FCoE transport logging */
9 #define LIBFCOE_SYSFS_LOGGING 0x08 /* fcoe_sysfs logging */
/linux/drivers/scsi/
H A Dscsi_logging.h7 * This defines the scsi logging feature. It is a means by which the user can
9 * really useful for fault tracing. The logging word is divided into 10 3-bit
14 * enough, since this gives 8 levels of logging (really 7, since 0 is always
61 * log events. If logging isn't enabled, they are no-ops and will be
/linux/Documentation/networking/
H A Dnetconsole.rst29 problem where disk logging fails and serial consoles are impractical.
51 tgt-port port for logging agent (6666)
52 tgt-ip IP address for logging agent
53 tgt-macaddr ethernet MAC address for logging agent (broadcast)
71 It also supports logging to multiple remote agents by specifying
108 remote logging targets to be dynamically added, removed, or have their
117 To add a remote logging target (target names can be arbitrary)::
392 6.4.0,6,444,501151268,-;netconsole: network logging started
433 in case the remote logging agent is on a separate LAN subnet than
447 if you find that the remote logging agent is not receiving or
[all …]
/linux/drivers/gpu/drm/nouveau/include/nvif/
H A Dlog.h10 * nvif_log - structure for tracking logging buffers
14 * Structure used to track logging buffers so that they can be cleaned up
18 * backing resources, such as logging buffers.
/linux/drivers/scsi/esas2r/
H A Desas2r_log.c47 * this module within the driver is tasked with providing logging functionality.
79 * translates an esas2r-defined logging event level to a kernel logging level.
81 * @param [in] level the esas2r-defined logging event level to translate
83 * @return the corresponding kernel logging level.
110 * the master logging function. this function will format the message as
/linux/tools/kvm/kvm_stat/
H A Dkvm_stat.txt23 Use batch and logging modes for scripting purposes.
95 run in logging mode (like vmstat)
100 like -l/--log, but logging to a file. Appends to existing files.
116 omit records with all zeros in logging mode
/linux/drivers/accel/ivpu/
H A Dvpu_jsm_api.h146 * name of a logging destination or a loggable HW component).
329 * Logging entity types.
331 * This enum defines the different types of entities involved in logging.
334 /** Logging destination (entity where logs can be stored / printed). */
463 /** Configure logging (used to modify configuration passed in boot params). */
465 /** Return current logging configuration. */
984 /* Cmdq group: only used for HWS logging of state changes */
1077 * @brief Structure to set another buffer to be used for scheduling-related logging.
1078 * The size of the logging buffer and the number of entries is defined as part of the
1089 * The host should set engine_idx and vpu_log_buffer_va to 0 to disable logging
[all …]
H A Dvpu_boot_api.h128 * Logging destinations.
130 * Logging output can be directed to different logging destinations. This enum
131 * defines the list of logging destinations supported by the VPU firmware (NOTE:
283 * the threshold will not be logged); applies to every enabled logging
299 * Mask of destinations to which logging messages are delivered; bitwise OR
304 * Mask of hardware components for which logging is enabled; bitwise OR of
465 /* Name of the logging entity, i.e "LRT", "LNN", "SHV0", etc */
/linux/scripts/clang-tools/
H A Dgen_compile_commands.py12 import logging
32 log_level: A logging level to filter log output.
190 level = getattr(logging, log_level)
191 logging.basicConfig(format='%(levelname)s: %(message)s', level=level)
220 logging.info('Could not add line from %s: %s',
/linux/arch/x86/kvm/mmu/
H A Dspte.h22 * be restricted to using write-protection (for L2 when CPU dirty logging, i.e.
29 * TDP with CPU dirty logging (PML). If NPT ever gains PML-like support, it
393 * 1. To intercept writes for dirty logging. KVM write-protects huge pages
394 * so that they can be split down into the dirty logging
397 * (e.g. if not using PML). SPTEs are write-protected for dirty logging
398 * during the VM-iotcls that enable dirty logging.
441 * shadow page tables between vCPUs. Write-protecting an SPTE for dirty logging
498 * as KVM allows stale Writable TLB entries to exist. When dirty logging, KVM
508 * flushes when enabling dirty logging (see kvm_mmu_slot_apply_flags()), and
/linux/tools/net/sunrpc/xdrgen/subcmds/
H A Dlint.py7 import logging
16 logger.setLevel(logging.DEBUG)
/linux/include/linux/
H A Drelay.h103 * The client should return 1 to continue logging, 0 to stop
104 * logging.
196 * if you might be logging from interrupt context. Try
197 * __relay_write() if you know you won't be logging from
225 * relay_write() if you might be logging from interrupt
/linux/drivers/scsi/fnic/
H A Dfnic_debugfs.c34 * fnic_debugfs_init - Initialize debugfs for fnic debug logging
40 * stats logging.
318 * fnic_trace_debugfs_init - Initialize debugfs for fnic trace logging
325 * trace logging into trace buffer.
347 * elements that are specific to fnic trace logging.
360 * Initialize debugfs for fnic control frame trace logging
367 * trace logging into trace buffer.
404 * elements that are specific to fnic_fc trace logging.
/linux/tools/testing/kunit/
H A Dkunit_kernel.py11 import logging
276 logging.error(e)
292 logging.error(message)
304 logging.error(e)
344 logging.error(e)
390 logging.error('Build interruption occurred. Cleaning console.')

12345678910>>...20