← Documents Documentation/tools/rtla/common_hist_options.txt GitHub 원문 ↗

Linux 6.18.37 · Kernel Tools

RTLA histogram 공통 option

RTLA histogram의 bucket 크기, entry 수, header·summary·index와 zero entry 출력 option을 설명합니다.

Source pathDocumentation/tools/rtla/common_hist_options.txt
Source versionLinux v6.18.37
TranslationDUJINLABS 전문 번역 + 해설

요약·해설과 원문, 전문 번역을 서로 분리했습니다. API 이름, symbol, source path는 원문 표기를 사용합니다.

1. 요약·해설

원문의 핵심 논리와 kernel programming 관점의 보충 설명입니다. 아래의 전문 번역과는 별도로 작성했습니다.

요약·해설

common_hist_options.txt:1-23

RTLA histogram의 bucket 크기, entry 수, header·summary·index와 zero entry 출력 option을 설명합니다.

2. 영어 원문 전체

번역 기준이 된 Linux v6.18.37 원문입니다. 줄 번호는 이 버전의 파일 좌표입니다.

원문 전체 펼치기
1 **-b**, **--bucket-size** *N*
2
3 Set the histogram bucket size (default *1*).
4
5 **-E**, **--entries** *N*
6
7 Set the number of entries of the histogram (default 256).
8
9 **--no-header**
10
11 Do not print header.
12
13 **--no-summary**
14
15 Do not print summary.
16
17 **--no-index**
18
19 Do not print index.
20
21 **--with-zeros**
22
23 Print zero only entries.
24

3. 한국어 전문 번역

영어 원문의 문단 순서와 의미를 유지한 전체 번역입니다. 코드, 함수명, symbol과 URL은 원문 표기를 유지합니다.

Bucket, entry와 출력 형식

1-23

`-b` 또는 `--bucket-size N`은 histogram bucket 크기를 설정하며 기본값은 1이다. `-E` 또는 `--entries N`은 histogram entry 수를 설정하며 기본값은 256이다.

`--no-header`, `--no-summary`, `--no-index`는 각각 header, summary, index 출력을 생략한다. `--with-zeros`는 값이 0인 entry도 출력한다.

Histogram option
Option동작
-b, --bucket-size Nbucket 크기; 기본 1
-E, --entries Nentry 수; 기본 256
--no-headerheader 생략
--no-summarysummary 생략
--no-indexindex 생략
--with-zeros0인 entry도 출력

hist mode의 크기와 출력 요소를 제어한다.

**-b**, **--bucket-size** *N*

        Set the histogram bucket size (default *1*).

**-E**, **--entries** *N*

        Set the number of entries of the histogram (default 256).

**--no-header**

        Do not print header.

**--no-summary**

        Do not print summary.

**--no-index**

        Do not print index.

**--with-zeros**

        Print zero only entries.