Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

tools build: Increment room for feature name in feature detection output

Since now there are features with a long name, increase the room for them,
so that fields are correctly aligned.

Signed-off-by: Roberto Sassu <roberto.sassu@huawei.com>
Tested-by: Arnaldo Carvalho de Melo <acme@redhat.com>
Cc: Alexander Shishkin <alexander.shishkin@linux.intel.com>
Cc: Ingo Molnar <mingo@redhat.com>
Cc: Jiri Olsa <jolsa@kernel.org>
Cc: Mark Rutland <mark.rutland@arm.com>
Cc: Namhyung Kim <namhyung@kernel.org>
Cc: Peter Zijlstra <peterz@infradead.org>
Cc: Quentin Monnet <quentin@isovalent.com>
Cc: bpf@vger.kernel.org
Link: https://lore.kernel.org/r/20220818120957.319995-2-roberto.sassu@huaweicloud.com
Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>

authored by

Roberto Sassu and committed by
Arnaldo Carvalho de Melo
74da7697 709533e5

+4 -4
+3 -3
tools/build/Makefile.feature
··· 181 181 182 182 define feature_print_status_code 183 183 ifeq ($(feature-$(1)), 1) 184 - MSG = $(shell printf '...%30s: [ \033[32mon\033[m ]' $(1)) 184 + MSG = $(shell printf '...%40s: [ \033[32mon\033[m ]' $(1)) 185 185 else 186 - MSG = $(shell printf '...%30s: [ \033[31mOFF\033[m ]' $(1)) 186 + MSG = $(shell printf '...%40s: [ \033[31mOFF\033[m ]' $(1)) 187 187 endif 188 188 endef 189 189 190 190 feature_print_text = $(eval $(feature_print_text_code)) 191 191 define feature_print_text_code 192 - MSG = $(shell printf '...%30s: %s' $(1) $(2)) 192 + MSG = $(shell printf '...%40s: %s' $(1) $(2)) 193 193 endef 194 194 195 195 #
+1 -1
tools/perf/Makefile.config
··· 1301 1301 1302 1302 print_var = $(eval $(print_var_code)) $(info $(MSG)) 1303 1303 define print_var_code 1304 - MSG = $(shell printf '...%30s: %s' $(1) $($(1))) 1304 + MSG = $(shell printf '...%40s: %s' $(1) $($(1))) 1305 1305 endef 1306 1306 1307 1307 ifeq ($(feature_display),1)