The following changes since commit 515418094c61cf135513a34651af6134a8794b5d: Merge branch 'master' of https://github.com/bvanassche/fio (2021-10-22 10:19:04 -0600) are available in the Git repository at: git://git.kernel.dk/fio.git master for you to fetch changes up to a87ea1a869595ca57052e7645431a397d3c7d5ac: Merge branch 'evelu-peak' of https://github.com/ErwanAliasr1/fio (2021-10-25 12:38:35 -0600) ---------------------------------------------------------------- Erwan Velu (3): t/one-core-peak: Reporting SElinux status t/io_uring: Fixing typo in help message t/one-core-peak: Don't report errors if missing NVME features Jens Axboe (1): Merge branch 'evelu-peak' of https://github.com/ErwanAliasr1/fio t/io_uring.c | 2 +- t/one-core-peak.sh | 19 +++++++++++++------ 2 files changed, 14 insertions(+), 7 deletions(-) --- Diff of recent changes: diff --git a/t/io_uring.c b/t/io_uring.c index a87042f8..f758a6d9 100644 --- a/t/io_uring.c +++ b/t/io_uring.c @@ -1059,7 +1059,7 @@ static void usage(char *argv, int status) " -b <int> : Block size, default %d\n" " -p <bool> : Polled IO, default %d\n" " -B <bool> : Fixed buffers, default %d\n" - " -R <bool> : DMA map fixed buffers, default %d\n" + " -D <bool> : DMA map fixed buffers, default %d\n" " -F <bool> : Register files, default %d\n" " -n <int> : Number of threads, default %d\n" " -O <bool> : Use O_DIRECT, default %d\n" diff --git a/t/one-core-peak.sh b/t/one-core-peak.sh index fba4ec95..9da8304e 100755 --- a/t/one-core-peak.sh +++ b/t/one-core-peak.sh @@ -199,12 +199,18 @@ show_nvme() { info ${device_name} "MODEL=${model} FW=${fw} serial=${serial} PCI=${pci_addr}@${link_speed} IRQ=${irq} NUMA=${numa} CPUS=${cpus} " which nvme &> /dev/null if [ $? -eq 0 ]; then - NCQA=$(nvme get-feature -H -f 0x7 ${device} |grep NCQA |cut -d ':' -f 2 | xargs) - NSQA=$(nvme get-feature -H -f 0x7 ${device} |grep NSQA |cut -d ':' -f 2 | xargs) - power_state=$(nvme get-feature -H -f 0x2 ${device} | grep PS |cut -d ":" -f 2 | xargs) - apste=$(nvme get-feature -H -f 0xc ${device} | grep APSTE |cut -d ":" -f 2 | xargs) - temp=$(nvme smart-log ${device} |grep 'temperature' |cut -d ':' -f 2 |xargs) - info ${device_name} "Temp:${temp}, Autonomous Power State Transition:${apste}, PowerState:${power_state}, Completion Queues:${NCQA}, Submission Queues:${NSQA}" + status="" + NCQA=$(nvme get-feature -H -f 0x7 ${device} 2>&1 |grep NCQA |cut -d ':' -f 2 | xargs) + [ -n "${NCQA}" ] && status="${status}Completion Queues:${NCQA}, " + NSQA=$(nvme get-feature -H -f 0x7 ${device} 2>&1 |grep NSQA |cut -d ':' -f 2 | xargs) + [ -n "${NSQA}" ] && status="${status}Submission Queues:${NSQA}, " + power_state=$(nvme get-feature -H -f 0x2 ${device} 2>&1 | grep PS |cut -d ":" -f 2 | xargs) + [ -n "${power_state}" ] && status="${status}PowerState:${power_state}, " + apste=$(nvme get-feature -H -f 0xc ${device} 2>&1 | grep APSTE |cut -d ":" -f 2 | xargs) + [ -n "${apste}" ] && status="${status} Autonomous Power State Transition:${apste}, " + temp=$(nvme smart-log ${device} 2>&1 |grep 'temperature' |cut -d ':' -f 2 |xargs) + [ -n "${temp}" ] && status="${status}Temp:${temp}" + info ${device_name} "${status}" fi } @@ -241,6 +247,7 @@ show_system() { info "system" "KERNEL: $(show_kernel_config_item ${config_item})" done info "system" "KERNEL: $(cat /proc/cmdline)" + info "system" "SElinux: $(getenforce)" tsc=$(journalctl -k | grep 'tsc: Refined TSC clocksource calibration:' | awk '{print $11}') if [ -n "${tsc}" ]; then info "system" "TSC: ${tsc} Mhz"