]> git.baikalelectronics.ru Git - kernel.git/commit
perf evsel: Remove retry_sample_id goto label
authorRiccardo Mancini <rickyman7@gmail.com>
Sat, 21 Aug 2021 09:19:20 +0000 (11:19 +0200)
committerArnaldo Carvalho de Melo <acme@redhat.com>
Tue, 31 Aug 2021 19:24:35 +0000 (16:24 -0300)
commit149d49c5fe99abf38c1133b9ddf1a944dd429419
treef637ed8f2470b5f994dba5d4a7c24c3ea3e5f0db
parentd3ccaf29211452df1f498f8234f303ad92a60674
perf evsel: Remove retry_sample_id goto label

As far as I can tell, there is no good reason, apart from optimization
to have the retry_sample_id separate from fallback_missing_features.

Probably, this label was added to avoid reapplying patches for missing
features that had already been applied.

However, missing features that have been added later have not used this
optimization, always jumping to fallback_missing_features and reapplying
all missing features.

This patch removes that label, replacing it with
fallback_missing_features.

Signed-off-by: Riccardo Mancini <rickyman7@gmail.com>
Cc: Ian Rogers <irogers@google.com>
Cc: Jiri Olsa <jolsa@redhat.com>
Cc: Mark Rutland <mark.rutland@arm.com>
Cc: Namhyung Kim <namhyung@kernel.org>
Cc: Peter Zijlstra <peterz@infradead.org>
Link: http://lore.kernel.org/lkml/340af0d03408d6621fd9c742e311db18b3585b3b.1629490974.git.rickyman7@gmail.com
Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
tools/perf/util/evsel.c