Searched refs:log (Results 126 - 150 of 365) sorted by relevance

1234567891011>>

/linux-master/drivers/gpu/drm/i915/gt/uc/
H A Dintel_guc_debugfs.c27 intel_guc_log_info(&guc->log, &p);
147 intel_guc_log_debugfs_register(&guc->log, root);
H A Dintel_guc.c184 intel_guc_log_init_early(&guc->log);
228 u32 level = intel_guc_log_get_level(&guc->log);
255 struct intel_guc_log *log = &guc->log; local
258 GEM_BUG_ON(!log->sizes_initialised);
260 offset = intel_guc_ggtt_offset(guc, log->vma) >> PAGE_SHIFT;
264 log->sizes[GUC_LOG_SECTIONS_DEBUG].flag |
265 log->sizes[GUC_LOG_SECTIONS_CAPTURE].flag |
266 (log->sizes[GUC_LOG_SECTIONS_CRASH].count << GUC_LOG_CRASH_SHIFT) |
267 (log
[all...]
/linux-master/drivers/gpu/drm/nouveau/nvkm/subdev/therm/
H A Dfanpwm.c50 if (card_type <= NV_40 || (fan->func.log[0] & 1))
75 if (card_type <= NV_40 || (fan->func.log[0] & 1))
/linux-master/drivers/edac/
H A Die31200_edac.c155 #define IE31200_ECCERRLOG_SYNDROME(log) \
156 ((log & IE31200_ECCERRLOG_SYNDROME_BITS) >> \
251 static int eccerrlog_row(u64 log) argument
253 return ((log & IE31200_ECCERRLOG_RANK_BITS) >>
310 u64 log; local
322 log = info->eccerrlog[channel];
323 if (log & IE31200_ECCERRLOG_UE) {
326 eccerrlog_row(log),
329 } else if (log & IE31200_ECCERRLOG_CE) {
332 IE31200_ECCERRLOG_SYNDROME(log),
[all...]
/linux-master/lib/kunit/
H A Dtest.c31 * Hook to fail the current test and print an error message to the log.
117 /* Append formatted message to log. */
118 void kunit_log_append(struct string_stream *log, const char *fmt, ...) argument
122 if (!log)
126 string_stream_vadd(log, fmt, args);
153 * We do not log the test suite header as doing so would
185 * We do not log the test suite results as doing so would
333 void kunit_init_test(struct kunit *test, const char *name, struct string_stream *log) argument
338 test->log = log;
[all...]
H A Dkunit-test.c553 suite.log = kunit_alloc_string_stream(test, GFP_KERNEL);
554 KUNIT_ASSERT_NOT_ERR_OR_NULL(test, suite.log);
555 string_stream_set_append_newlines(suite.log, true);
557 kunit_log(KERN_INFO, test, "put this in log.");
559 kunit_log(KERN_INFO, &suite, "add to suite log.");
563 KUNIT_EXPECT_TRUE(test, test->log->append_newlines);
565 full_log = string_stream_get_string(test->log);
568 strstr(full_log, "put this in log."));
572 full_log = string_stream_get_string(suite.log);
575 strstr(full_log, "add to suite log
[all...]
/linux-master/fs/xfs/
H A Dxfs_sysfs.c235 * removexattr operations are tracked via the log and can be restarted during
409 struct xlog *log = to_xlog(kobject); local
411 spin_lock(&log->l_icloglock);
412 cycle = log->l_curr_cycle;
413 block = log->l_curr_block;
414 spin_unlock(&log->l_icloglock);
427 struct xlog *log = to_xlog(kobject); local
429 xlog_crack_atomic_lsn(&log->l_tail_lsn, &cycle, &block);
442 struct xlog *log = to_xlog(kobject); local
444 xlog_crack_grant_head(&log
456 struct xlog *log = to_xlog(kobject); local
[all...]
H A Dxfs_rtalloc.c42 int log; /* loop counter, log2 of ext. size */ local
57 for (log = high; log >= low; log--) {
61 error = xfs_rtget_summary(args, log, bbno, &sum);
69 *maxlog = log;
78 /* There were no extents at levels > log. */
79 if (mp->m_rsum_cache && log + 1 < mp->m_rsum_cache[bbno])
80 mp->m_rsum_cache[bbno] = log + 1;
96 int log; /* summar local
[all...]
H A Dxfs_refcount_item.c79 * This is called to fill in the vector of log iovecs for the
80 * given cui log item. We use only 1 iovec, and we point that
104 * The unpin operation is the last place an CUI is manipulated in the log. It is
105 * either inserted in the AIL or aborted in the event of a log I/O error. In
109 * drop the log's CUI reference now that the log is done with it.
177 * This is called to fill in the vector of log iovecs for the
178 * given cud log item. We use only 1 iovec, and we point that
438 * Process a refcount update intent item that was recovered from the log.
478 * refcount update. However, we're in log recover
577 xlog_recover_cui_commit_pass2( struct xlog *log, struct list_head *buffer_list, struct xlog_recover_item *item, xfs_lsn_t lsn) argument
625 xlog_recover_cud_commit_pass2( struct xlog *log, struct list_head *buffer_list, struct xlog_recover_item *item, xfs_lsn_t lsn) argument
[all...]
/linux-master/drivers/misc/bcm-vk/
H A Dbcm_vk_dev.c209 * is greater than threshold, log it.
234 /* print a log as info */
244 struct bcm_vk_peer_log log; local
251 memcpy_fromio(&log, vk->bar[BAR_2] + vk->peerlog_off, sizeof(log));
254 log.buf_size, log.mask, log.rd_idx, log.wr_idx);
257 dev_err(dev, "Peer log dum
[all...]
/linux-master/net/bridge/netfilter/
H A Debt_log.c87 '0' + loginfo->u.log.level, prefix,
93 bitmask = loginfo->u.log.logflags;
154 * then log the ARP payload
186 li.u.log.level = info->loglevel;
187 li.u.log.logflags = info->bitmask;
204 .name = "log",
/linux-master/tools/testing/selftests/pstore/
H A Dcommon_tests64 LOG_FILE=$LOG_DIR/`basename $0`.log
65 mkdir -p $LOG_DIR || errexit "Failed to make a log directory: $LOG_DIR"
/linux-master/tools/power/cpupower/bench/
H A Dcpufreq-bench_script.sh48 cpufreq-bench -o /var/log/cpufreq-bench/up_threshold_${up_threshold}_sampling_rate_${sampling_rate}
60 command="${command} /var/log/cpufreq-bench/up_threshold_${up_threshold}_sampling_rate_${sampling_rate}/* \"sampling_rate = $sampling_rate\""
70 command="${command} /var/log/cpufreq-bench/up_threshold_${up_threshold}_sampling_rate_${sampling_rate}/* \"up_threshold = $up_threshold\""
80 command="${command} /var/log/cpufreq-bench/up_threshold_${up_threshold}_sampling_rate_${sampling_rate}/* \"up_threshold = $up_threshold - sampling_rate = $sampling_rate\""
/linux-master/drivers/gpu/drm/nouveau/include/nvkm/subdev/bios/
H A Dgpio.h36 u8 log[2]; member in struct:dcb_gpio_func
/linux-master/drivers/net/wireless/broadcom/b43/
H A Ddebugfs.h30 struct b43_txstatus *log; member in struct:b43_txstatus_log
/linux-master/drivers/net/wireless/broadcom/b43legacy/
H A Ddebugfs.h25 struct b43legacy_txstatus *log; member in struct:b43legacy_txstatus_log
/linux-master/drivers/media/platform/amphion/
H A Dvpu_windsor.h12 void vpu_windsor_set_log_buf(struct vpu_shared_addr *shared, struct vpu_buffer *log);
/linux-master/drivers/pinctrl/bcm/
H A Dpinctrl-ns2-mux.c978 struct ns2_mux_log *log; local
990 log = &pinctrl->mux_log[0];
991 log->mux.base = NS2_PIN_MUX_BASE0;
992 log->mux.offset = 0;
993 log->mux.shift = 31;
994 log->mux.alt = 0;
1002 log = &pinctrl->mux_log[i];
1003 log->mux.base = NS2_PIN_MUX_BASE0;
1004 log->mux.offset = NS2_MUX_PAD_FUNC1_OFFSET;
1005 log
[all...]
/linux-master/drivers/gpu/drm/xe/
H A Dxe_guc_debugfs.c43 xe_guc_log_print(&guc->log, &p);
/linux-master/tools/testing/selftests/gpio/
H A Dgpio-mockup.sh82 log() function
206 log "test_line $chip $offset"
270 log test_no_line "$*"
295 log "GPIO $module test with ranges: <$ranges>:"
/linux-master/include/linux/
H A Dbpf_verifier.h577 /* Logical start and end positions of a "log window" of the verifier log.
580 * except during log reset situations, in which (end_pos - start_pos)
583 * user log buffer.
604 static inline bool bpf_verifier_log_needed(const struct bpf_verifier_log *log) argument
606 return log && log->level;
699 struct bpf_verifier_log log; member in struct:bpf_verifier_env
756 __printf(2, 0) void bpf_verifier_vlog(struct bpf_verifier_log *log,
760 __printf(2, 3) void bpf_log(struct bpf_verifier_log *log,
[all...]
/linux-master/fs/jfs/
H A Djfs_mount.c255 * open/initialize log
270 * write MOUNT log record of the file system
432 /* record log's dev_t and mount serial number */
434 new_encode_dev(file_bdev(sbi->log->bdev_file)->bd_dev));
435 j_sb->s_logserial = cpu_to_le32(sbi->log->serial);
477 * function: write a MOUNT log record for file system.
479 * MOUNT record keeps logredo() from processing log records
480 * for this file system past this point in log.
484 * since log records of previous mounts of a fileset
490 struct jfs_log *log local
[all...]
/linux-master/net/openvswitch/
H A Dconntrack.c1061 struct ovs_conntrack_info *info, bool log)
1086 OVS_NLERR(log, "Unknown NAT attribute (type=%d, max=%d)",
1092 OVS_NLERR(log, "NAT attribute type %d has unexpected length (%d != %d)",
1102 OVS_NLERR(log, "Only one type of NAT may be specified");
1147 OVS_NLERR(log, "Unknown nat attribute (%d)", type);
1153 OVS_NLERR(log, "NAT attribute has %d unknown bytes", rem);
1159 OVS_NLERR(log,
1166 OVS_NLERR(log,
1207 const char **helper, bool log)
1218 OVS_NLERR(log,
1060 parse_nat(const struct nlattr *attr, struct ovs_conntrack_info *info, bool log) argument
1206 parse_ct(const struct nlattr *attr, struct ovs_conntrack_info *info, const char **helper, bool log) argument
1348 ovs_ct_copy_action(struct net *net, const struct nlattr *attr, const struct sw_flow_key *key, struct sw_flow_actions **sfa, bool log) argument
[all...]
/linux-master/drivers/cxl/core/
H A Dmbox.c656 struct cxl_mbox_get_log log; local
659 log = (struct cxl_mbox_get_log) {
667 .size_in = sizeof(log),
668 .payload_in = &log,
804 u8 *log; local
811 log = kvmalloc(size, GFP_KERNEL);
812 if (!log) {
817 rc = cxl_xfer_log(mds, &uuid, &size, log);
819 kvfree(log);
823 cxl_walk_cel(mds, size, log);
873 cxl_clear_event_record(struct cxl_memdev_state *mds, enum cxl_event_log_type log, struct cxl_get_event_payload *get_pl) argument
[all...]
/linux-master/tools/testing/ktest/examples/
H A Dsnowball.conf13 LOG_FILE = ${OUTPUT_DIR}/snowball.log

Completed in 254 milliseconds

1234567891011>>