| /linux/tools/perf/tests/shell/ |
| H A D | trace_summary.sh | 2 # perf trace summary (exclusive) 5 # Check that perf trace works with various summary mode 38 # summary only for a process 41 # normal output with summary at the end 44 # summary only with an explicit summary mode 45 test_perf_trace "-s --summary-mode=thread" 47 # summary with normal output - total summary mode 48 test_perf_trace "-S --summary-mode=total" 50 # summary only for system wide - per-thread summary 51 test_perf_trace "-as --summary-mode=thread --no-bpf-summary" [all …]
|
| H A D | stat+csv_summary.sh | 2 # perf stat csv summary test 9 # summary 9224197 cycles 8012885033 100.00 11 perf stat -e cycles -x' ' -I1000 --interval-count 1 --summary 2>&1 | \ 12 grep -e summary | \ 13 while read summary _ _ _ _ 15 if [ $summary != "summary" ]; then 24 perf stat -e cycles -x' ' -I1000 --interval-count 1 --summary --no-csv-summary 2>&1 | \ 25 grep -e summary | \
|
| /linux/fs/jffs2/ |
| H A D | summary.c | 30 c->summary = kzalloc(sizeof(struct jffs2_summary), GFP_KERNEL); in jffs2_sum_init() 32 if (!c->summary) { in jffs2_sum_init() 33 JFFS2_WARNING("Can't allocate memory for summary information!\n"); 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() 40 JFFS2_WARNING("Can't allocate buffer for writing out summary information!\n"); 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() [all …]
|
| H A D | summary.h | 16 /* Limit summary size to 64KiB so that we can kmalloc it. If the summary 17 is larger than that, we have to just ditch it and avoid using summary 38 /* Summary structures used on flash */ 91 /* Summary structures used in the memory */ 149 /* Summary related information stored in superblock */ 153 uint32_t sum_size; /* collected summary information for nextblock */ 159 jint32_t *sum_buf; /* buffer for writing out summary */ 162 /* Summary marker is stored at the end of every sumarized erase block */ 166 jint32_t offset; /* offset of the summary node in the jeb */ 172 #ifdef CONFIG_JFFS2_SUMMARY /* SUMMARY SUPPORT ENABLED */ [all …]
|
| H A D | nodemgmt.c | 62 * @sumsize: summary size requested or JFFS2_SUMMARY_NOSUM_SIZE for no summary 343 jffs2_sum_reset_collected(c->summary); /* reset collected summary */ in jffs2_find_nextblock() 362 uint32_t reserved_size; /* for summary information at the end of the jeb */ in jffs2_do_reserve_space() 369 /* NOSUM_SIZE means not to generate summary */ in jffs2_do_reserve_space() 372 reserved_size = PAD(sumsize + c->summary->sum_size + JFFS2_SUMMARY_FRAME_SIZE); in jffs2_do_reserve_space() 374 "summary->size=%d , sumsize=%d\n", in jffs2_do_reserve_space() 376 c->summary->sum_size, sumsize); in jffs2_do_reserve_space() 380 write out summary information now, close this jeb and select new nextblock? */ in jffs2_do_reserve_space() 381 if (jeb && (PAD(minsize) + PAD(c->summary->sum_size + sumsize + in jffs2_do_reserve_space() 384 /* Has summary been disabled for this jeb? */ in jffs2_do_reserve_space() [all …]
|
| /linux/tools/testing/selftests/rcutorture/bin/ |
| H A D | parse-console.sh | 125 summary="" 129 summary="$summary Badness: $n_badness" 134 summary="$summary Warnings: $n_warn" 139 summary="$summary Bugs: $n_bugs" 146 summary="$summary (all bugs kcsan)" 148 summary [all...] |
| /linux/net/rxrpc/ |
| H A D | input.c | 33 struct rxrpc_ack_summary *summary) in rxrpc_congestion_management() argument 35 summary->change = rxrpc_cong_no_change; in rxrpc_congestion_management() 36 summary->in_flight = rxrpc_tx_in_flight(call); in rxrpc_congestion_management() 39 summary->retrans_timeo = true; in rxrpc_congestion_management() 40 call->cong_ssthresh = umax(summary->in_flight / 2, 2); in rxrpc_congestion_management() 50 call->cong_cumul_acks += summary->nr_new_sacks; in rxrpc_congestion_management() 51 call->cong_cumul_acks += summary->nr_new_hacks; in rxrpc_congestion_management() 80 summary->change = rxrpc_cong_rtt_window_end; in rxrpc_congestion_management() 90 if (summary->new_low_snack) { in rxrpc_congestion_management() 91 summary->change = rxrpc_cong_new_low_nack; in rxrpc_congestion_management() [all …]
|
| /linux/tools/testing/selftests/bpf/benchs/ |
| H A D | run_common.sh | 62 summary=$(echo $2 | tail -n1) 63 printf "%-20s %s (drops %s)\n" "$bench" "$(hits $summary)" "$(drops $summary)" 69 summary=$(echo $2 | tail -n1) 70 printf "%-20s %s%%\n" "$bench" "$(percentage $summary)" 76 summary=$(echo $2 | tail -n1) 77 printf "%-20s %s\n" "$bench" "$(ops $summary)" 83 summary=$(echo $2 | tail -n1) 84 printf "%-20s %s\n" "$bench" "$(local_storage $summary)" 90 summary=$(echo $2 | tail -n1) 91 printf "%-20s %s\n" "$bench" "$(total $summary)"
|
| /linux/fs/xfs/scrub/ |
| H A D | rtsummary.c | 31 * Realtime Summary 34 * We check the realtime summary by scanning the realtime bitmap file to create 35 * a new summary file incore, and then we compare the computed version against 73 descr = xchk_xfile_descr(sc, "realtime summary file"); in xchk_setup_rtsummary() 98 * growfsrt trying to expand the summary or change the size of the rt in xchk_setup_rtsummary() 102 * summary here, but to keep the locking APIs simple we lock both inodes in xchk_setup_rtsummary() 165 /* Update the summary file to reflect the free extent that we've accumulated. */ 200 /* Bump the summary count. */ in xchk_rtsum_record_free() 212 /* Compute the realtime summary from the realtime bitmap. */ 307 /* Scrub the realtime summary. */ [all …]
|
| H A D | fscounters.c | 29 * FS Summary Counters 32 * The basics of filesystem summary counter checking are that we iterate the 37 * However, the reality is that summary counters are a tricky beast to check. 64 * summary counters after checking all AG headers). Do this from the setup 145 * that comprise the summary counters and compare them to the percpu counters. 230 * changing the global fs summary counters while we're repairing them. in xchk_setup_fscounters() 245 * Part 1: Collecting filesystem summary counts. For each AG, we add its 246 * summary counts (total inodes, free inodes, free data blocks) to an incore 247 * copy of the overall filesystem summary counts. 454 * Part 2: Comparing filesystem summary counters. All we have to do here is
|
| /linux/tools/tracing/rtla/src/ |
| H A D | timerlat_top.c | 97 timerlat_top_reset_sum(struct timerlat_top_cpu *summary) in timerlat_top_reset_sum() argument 99 memset(summary, 0, sizeof(*summary)); in timerlat_top_reset_sum() 100 summary->min_irq = ~0; in timerlat_top_reset_sum() 101 summary->min_thread = ~0; in timerlat_top_reset_sum() 102 summary->min_user = ~0; in timerlat_top_reset_sum() 198 /* Pull summary */ in timerlat_top_bpf_pull_data() 362 * timerlat_top_print_sum - prints the summary output 365 timerlat_top_print_sum(struct osnoise_tool *top, struct timerlat_top_cpu *summary) in timerlat_top_print_sum() argument 369 unsigned long long count = summary->irq_count; in timerlat_top_print_sum() 376 if (!summary->irq_count && !summary->thread_count) in timerlat_top_print_sum() [all …]
|
| /linux/tools/power/pm-graph/ |
| H A D | README | 20 - Feature Summary: 214 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 [all …]
|
| /linux/drivers/net/wireless/ath/ath11k/ |
| H A D | spectral.c | 467 struct spectral_summary_fft_report *summary, in ath11k_spectral_pull_summary() argument 470 report->timestamp = __le32_to_cpu(summary->timestamp); in ath11k_spectral_pull_summary() 472 __le32_to_cpu(summary->info0)); in ath11k_spectral_pull_summary() 474 __le32_to_cpu(summary->info0)); 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() [all …]
|
| /linux/Documentation/translations/ja_JP/ |
| H A D | SubmittingPatches | 472 Subject: [PATCH 001/123] subsystem: summary phrase 500 電子メールのサブジェクトの「summary phrase」はそのパッチの概要を正確 501 に表現しなければなりません。「summary phrase」をファイル名にしてはい 502 けません。パッチシリーズ中でそれぞれのパッチは同じ「summary phrase」を 506 あなたの電子メールの「summary phrase」がそのパッチにとって世界で唯一の識別子に 507 なるように心がけてください。「summary phrase」は git のチェンジログの中へ 508 ずっと伝播していきます。「summary phrase」は、開発者が後でパッチを参照する 510 人々はそのパッチに関連した議論を読むために「summary phrase」を使って google で 515 これらの理由のため、「summary phrase」はなぜパッチが必要であるか、パッチが何を 517 「summary phrase」は簡潔であり説明的である表現を目指しつつ、うまく [all …]
|
| /linux/tools/perf/scripts/python/ |
| H A D | task-analyzer.py | 102 "--summary", action="store_true", help="print addtional runtime information" 105 "--summary-only", action="store_true", help="print only summary without traces" 108 "--summary-extended", 110 help="print the summary with additional information of max inter task times" 166 "--csv-summary", 168 help="Write summary to file selected by user. Options, like --ns or" 169 " --summary-extended are used.", 195 if args.summary or args.summary_extended or args.summary_only: 198 # min values for summary depending on the header 290 class Summary(object): class [all …]
|
| /linux/drivers/md/dm-vdo/ |
| H A D | slab-depot.h | 35 * maintains a separate copy of the slab summary to remove the need for explicit locking on that 77 /* A waiter object for updating the slab summary */ 88 /* Whether the journal is updating the slab summary */ 103 /* The tail sequence number that is written in the slab summary */ 105 /* The tail sequence number that was last summarized in slab summary */ 261 /* A waiter object for updating the slab summary */ 325 * The information in the summary for each slab includes the rough number of free blocks (which is 330 * complete copy of the summary for each of up to 16 physical zones. 352 /* The index of this block in its zone's summary */ 369 * The statistics for all the slab summary zones owned by this slab summary. These fields are all [all …]
|
| /linux/tools/perf/Documentation/ |
| H A D | perf-trace.txt | 123 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. 153 --summary-mode=mode:: 154 To be used with -s or -S, to select how to show summary. By default it'll 155 show the syscall summary by thread. Possible values are: thread, total, [all …]
|
| /linux/tools/power/x86/turbostat/ |
| H A D | turbostat.8 | 95 …summary plus the specified cpu-set. If cpu-set is the string "core", then the system summary plus… 127 \fB--Summary\fP limits output to a 1-line System Summary for each interval. 137 …summary line. The system summary line has a '-' in the columns for the Package, Core, and CPU. T… 140 …led by default, and is enabled with "--enable usec", or --debug. On the summary row, usec refers … 142 …can be enabled with "--enable Time_Of_Day_Seconds" or "--debug". On the summary row, Time_Of_Day_… 158 …f interrupts serviced across all CPUs. turbostat parses /proc/interrupts to generate this summary. 162 …d the C1, C2, C3 idle state during the measurement interval. The system summary line shows the su… 168 …The residency percentage that Linux requested C1, C2, C3.... The system summary is the average of… 210 …al that RAPL throttling was active on the Package. Note that the system summary is the sum of the… 216 … MHz for pm_domain=1 and fabric_cluster=0, instantaneous sample. System summary is the average of…
|
| /linux/fs/xfs/libxfs/ |
| H A D | xfs_rtbitmap.h | 17 struct xfs_buf *sumbp; /* summary block buffer */ 20 xfs_fileoff_t sumoff; /* summary block number */ 266 * offset within the rt summary file. 278 * Convert an xfs_suminfo_t offset to a file block offset within the rt summary 293 * Convert an xfs_suminfo_t offset to an info word offset within an rt summary 309 /* Return a pointer to a summary info word within a rt summary block. */ 326 /* Get the current value of a summary counter. */ 339 /* Add to the current value of a summary counter and return the new value. */
|
| /linux/fs/xfs/ |
| H A D | xfs_rtalloc.c | 53 xfs_suminfo_t sum; /* summary data */ in xfs_rtany_summary() 69 * Get one summary datum. in xfs_rtany_summary() 95 * Copy and transform the summary file, given the old and new 105 int log; /* summary level number (log length) */ in xfs_rtcopy_summary() 106 xfs_suminfo_t sum; /* summary data */ in xfs_rtcopy_summary() 133 * Updates all the summary information as well as the bitmap. 139 xfs_rtxlen_t len) /* in/out: summary block number */ in xfs_rtallocate_range() 151 * properly update the summary. in xfs_rtallocate_range() 166 * Decrement the summary information corresponding to the entire in xfs_rtallocate_range() 177 * old extent, add summary data for them to be free. in xfs_rtallocate_range() [all …]
|
| /linux/tools/testing/selftests/mm/ |
| H A D | test_vmalloc.sh | 57 echo "Check the kernel message buffer to see the summary." 68 echo "Check the kernel ring buffer to see the summary." 79 echo "Check the kernel ring buffer to see the summary." 154 echo "Check the kernel ring buffer to see the summary."
|
| /linux/fs/jfs/ |
| H A D | jfs_imap.h | 16 #define SMAPSZ 4 /* number of words per summary map */ 17 #define EXTSPERSUM 32 /* number of extents per summary map entry */ 18 #define L2EXTSPERSUM 5 /* l2 number of extents per summary map */ 24 #define SMAPSIZE 16 /* bytes in the IAG summary maps */ 58 /* summary map: 1 bit per inode extent */
|
| /linux/arch/alpha/kernel/ |
| H A D | sys_noritake.c | 74 /* Read the interrupt summary registers of NORITAKE */ in noritake_device_interrupt() 142 * Summary @ 0x542, summary register #1: 144 * 0 All valid ints from summary regs 2 & 3 161 * Summary @ 0x544, summary register #2:
|
| /linux/Documentation/tools/rtla/ |
| H A D | rtla-osnoise.rst | 20 a summary of the noise of the operating system, including the counters of 23 mode displays information about the periodic summary from the *osnoise* tracer. 32 Prints the summary from osnoise tracer.
|
| /linux/drivers/net/ethernet/actions/ |
| H A D | owl-emac.h | 56 #define OWL_EMAC_BIT_MAC_CSR5_NIS BIT(16) /* Normal interrupt summary */ 57 #define OWL_EMAC_BIT_MAC_CSR5_AIS BIT(15) /* Abnormal interrupt summary */ 95 #define OWL_EMAC_BIT_MAC_CSR7_NIE BIT(16) /* Normal interrupt summary enable */ 96 #define OWL_EMAC_BIT_MAC_CSR7_AIE BIT(15) /* Abnormal interrupt summary enable */ 182 #define OWL_EMAC_BIT_RDES0_ES BIT(15) /* Error summary */ 202 #define OWL_EMAC_BIT_TDES0_ES BIT(15) /* Error summary */
|