Home
last modified time | relevance | path

Searched refs:summary (Results 1 – 25 of 156) sorted by relevance

1234567

/Linux-v5.10/tools/testing/selftests/rcutorture/bin/
Dparse-console.sh125 summary=""
129 summary="$summary Badness: $n_badness"
134 summary="$summary Warnings: $n_warn"
139 summary="$summary Bugs: $n_bugs"
144 summary="$summary Call Traces: $n_calltrace"
149 summary="$summary lockdep: $n_badness"
154 summary="$summary Stalls: $n_stalls"
159 summary="$summary Starves: $n_starves"
161 print_warning Summary: $summary
/Linux-v5.10/fs/jffs2/
Dsummary.c30 c->summary = kzalloc(sizeof(struct jffs2_summary), GFP_KERNEL); in jffs2_sum_init()
32 if (!c->summary) { in jffs2_sum_init()
37 c->summary->sum_buf = kmalloc(sum_size, GFP_KERNEL); in jffs2_sum_init()
39 if (!c->summary->sum_buf) { in jffs2_sum_init()
41 kfree(c->summary); in jffs2_sum_init()
54 jffs2_sum_disable_collecting(c->summary); in jffs2_sum_exit()
56 kfree(c->summary->sum_buf); in jffs2_sum_exit()
57 c->summary->sum_buf = NULL; in jffs2_sum_exit()
59 kfree(c->summary); in jffs2_sum_exit()
60 c->summary = NULL; in jffs2_sum_exit()
[all …]
Dnodemgmt.c339 jffs2_sum_reset_collected(c->summary); /* reset collected summary */ in jffs2_find_nextblock()
368 reserved_size = PAD(sumsize + c->summary->sum_size + JFFS2_SUMMARY_FRAME_SIZE); in jffs2_do_reserve_space()
372 c->summary->sum_size, sumsize); in jffs2_do_reserve_space()
377 if (jeb && (PAD(minsize) + PAD(c->summary->sum_size + sumsize + in jffs2_do_reserve_space()
381 if (jffs2_sum_is_disabled(c->summary)) { in jffs2_do_reserve_space()
393 if (jffs2_sum_is_disabled(c->summary)) { in jffs2_do_reserve_space()
404 reserved_size = PAD(sumsize + c->summary->sum_size + JFFS2_SUMMARY_FRAME_SIZE); in jffs2_do_reserve_space()
DMakefile22 jffs2-$(CONFIG_JFFS2_SUMMARY) += summary.o
/Linux-v5.10/net/rxrpc/
Dinput.c40 struct rxrpc_ack_summary *summary, in rxrpc_congestion_management() argument
48 summary->flight_size = in rxrpc_congestion_management()
49 (call->tx_top - call->tx_hard_ack) - summary->nr_acks; in rxrpc_congestion_management()
52 summary->retrans_timeo = true; in rxrpc_congestion_management()
54 summary->flight_size / 2, 2); in rxrpc_congestion_management()
64 cumulative_acks += summary->nr_new_acks; in rxrpc_congestion_management()
65 cumulative_acks += summary->nr_rot_new_acks; in rxrpc_congestion_management()
69 summary->mode = call->cong_mode; in rxrpc_congestion_management()
70 summary->cwnd = call->cong_cwnd; in rxrpc_congestion_management()
71 summary->ssthresh = call->cong_ssthresh; in rxrpc_congestion_management()
[all …]
/Linux-v5.10/Documentation/translations/ja_JP/
DSubmittingPatches471 Subject: [PATCH 001/123] subsystem: summary phrase
499 電子メールのサブジェクトの「summary phrase」はそのパッチの概要を正確
500 に表現しなければなりません。「summary phrase」をファイル名にしてはい
501 けません。パッチシリーズ中でそれぞれのパッチは同じ「summary phrase」を
505 あなたの電子メールの「summary phrase」がそのパッチにとって世界で唯一の識別子に
506 なるように心がけてください。「summary phrase」は git のチェンジログの中へ
507 ずっと伝播していきます。「summary phrase」は、開発者が後でパッチを参照する
509 人々はそのパッチに関連した議論を読むために「summary phrase」を使って google で
514 これらの理由のため、「summary phrase」はなぜパッチが必要であるか、パッチが何を
516summary phrase」は簡潔であり説明的である表現を目指しつつ、うまく
[all …]
/Linux-v5.10/drivers/net/wireless/ath/ath11k/
Dspectral.c471 struct spectral_summary_fft_report *summary, in ath11k_spectral_pull_summary() argument
474 report->timestamp = __le32_to_cpu(summary->timestamp); in ath11k_spectral_pull_summary()
476 __le32_to_cpu(summary->info0)); in ath11k_spectral_pull_summary()
478 __le32_to_cpu(summary->info0)); in ath11k_spectral_pull_summary()
480 __le32_to_cpu(summary->info0)); in ath11k_spectral_pull_summary()
482 __le32_to_cpu(summary->info0)); in ath11k_spectral_pull_summary()
484 __le32_to_cpu(summary->info0)); in ath11k_spectral_pull_summary()
486 __le32_to_cpu(summary->info0)); in ath11k_spectral_pull_summary()
488 __le32_to_cpu(summary->info0)); in ath11k_spectral_pull_summary()
490 __le32_to_cpu(summary->info0)); in ath11k_spectral_pull_summary()
[all …]
/Linux-v5.10/tools/testing/selftests/bpf/benchs/
Drun_bench_ringbufs.sh29 summary=$(echo $2 | tail -n1)
30 printf "%-20s %s (drops %s)\n" "$bench" "$(hits $summary)" "$(drops $summary)"
Drun_bench_trigger.sh7 summary=$(sudo ./bench -w2 -d5 -a trig-$i | tail -n1 | cut -d'(' -f1 | cut -d' ' -f3-)
8 printf "%-10s: %s\n" $i "$summary"
Drun_bench_rename.sh7 summary=$(sudo ./bench -w2 -d5 -a rename-$i | tail -n1 | cut -d'(' -f1 | cut -d' ' -f3-)
8 printf "%-10s: %s\n" $i "$summary"
/Linux-v5.10/tools/perf/
Dbuiltin-bench.c34 const char *summary; member
96 const char *summary; member
131 printf("%14s: %s\n", bench->name, bench->summary); in dump_benchmarks()
166 printf("%14s: %s\n", coll->name, coll->summary); in print_usage()
Dbuiltin-data.c16 const char *summary; member
45 printf("\t %s\t- %s\n", cmd->name, cmd->summary); in print_usage()
/Linux-v5.10/tools/power/pm-graph/
DREADME214 individual test data and a set of summary pages in the root. The summary.html
216 summary-issue.html and summary-devices.html files include data taken from
220 summary.html
221 summary-issues.html
222 summary-devices.html
245 run is done, the -summary command is called automatically to create summary
247 speed up the testing by not creating timelines or summary html files. You
248 can then run the tool again at a later time with -summary and -genhtml to
252 Run the test and capture the trace logs, but skip the timeline and summary
254 copy the data to a faster host machine and run -summary -genhtml to
[all …]
/Linux-v5.10/tools/testing/selftests/
Drun_kselftest.sh23 -s | --summary Print summary with detailed log in output.log
/Linux-v5.10/Documentation/hwmon/
Dsmm665.rst14 http://www.summitmicro.com/prod_select/summary/SMM465/SMM465DS.pdf
24 http://www.summitmicro.com/prod_select/summary/SMM665/SMM665B_2089_20.pdf
34 http://www.summitmicro.com/prod_select/summary/SMM665C/SMM665C_2125.pdf
44 http://www.summitmicro.com/prod_select/summary/SMM764/SMM764_2098.pdf
54 http://www.summitmicro.com/prod_select/summary/SMM766/SMM766_2086.pdf
56 http://www.summitmicro.com/prod_select/summary/SMM766B/SMM766B_2122.pdf
/Linux-v5.10/tools/perf/Documentation/
Dperf-sched.txt126 --summary::
127 Show only a summary of scheduling by thread with min, max, and average
131 --with-summary::
132 Show all scheduling events followed by a summary by thread with min,
Dperf-trace.txt123 Accrue thread runtime and provide a summary at the end of the session.
140 --summary::
141 Show only a summary of syscalls by thread with min, max, and average times
145 --with-summary::
146 Show all syscalls followed by a summary by thread with min, max, and
149 --errno-summary::
151 syscalls, using only this option will trigger --summary.
/Linux-v5.10/Documentation/driver-api/soundwire/
Dindex.rst8 summary
/Linux-v5.10/Documentation/spi/
Dindex.rst10 spi-summary
/Linux-v5.10/arch/powerpc/tools/
Dcheckpatch.sh11 --no-summary \
/Linux-v5.10/scripts/package/
Dsnapcraft.template3 summary: Linux kernel
/Linux-v5.10/Documentation/admin-guide/cifs/
Dchanges.rst5 See https://wiki.samba.org/index.php/LinuxCIFSKernel for summary
/Linux-v5.10/Documentation/i2c/
Dindex.rst13 summary
/Linux-v5.10/arch/alpha/include/asm/
Dcore_titan.h336 u64 summary; /* 0x00 */ member
353 u64 summary; /* 0x00 */ member
/Linux-v5.10/kernel/debug/kdb/
Dkdb_cmds13 -summary

1234567