• Jiri Olsa's avatar
    perf/core: Add attr_groups_update into struct pmu · f3a3a825
    Jiri Olsa authored
    Adding attr_update attribute group into pmu, to allow
    having multiple attribute groups for same group name.
    
    This will allow us to update "events" or "format"
    directories with attributes that depend on various
    HW conditions.
    
    For example having group_format_extra group that updates
    "format" directory only if pmu version is 2 and higher:
    
      static umode_t
      exra_is_visible(struct kobject *kobj, struct attribute *attr, int i)
      {
             return x86_pmu.version >= 2 ? attr->mode : 0;
      }
    
      static struct attribute_group group_format_extra = {
             .name       = "format",
             .is_visible = exra_is_visible,
      };
    Signed-off-by: default avatarJiri Olsa <jolsa@kernel.org>
    Signed-off-by: default avatarPeter Zijlstra (Intel) <peterz@infradead.org>
    Cc: Alexander Shishkin <alexander.shishkin@linux.intel.com>
    Cc: Arnaldo Carvalho de Melo <acme@kernel.org>
    Cc: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
    Cc: Linus Torvalds <torvalds@linux-foundation.org>
    Cc: Namhyung Kim <namhyung@kernel.org>
    Cc: Peter Zijlstra <peterz@infradead.org>
    Cc: Thomas Gleixner <tglx@linutronix.de>
    Link: https://lkml.kernel.org/r/20190512155518.21468-3-jolsa@kernel.orgSigned-off-by: default avatarIngo Molnar <mingo@kernel.org>
    f3a3a825
core.c 288 KB