[PATCH] powerpc/perf/hv-24x7: Dont create sysfs event files for dummy events

Subsystems: linux for powerpc (32-bit and 64-bit), the rest

STALE2071d

5 messages, 3 authors, 2020-12-18 · open the first message on its own page

[PATCH] powerpc/perf/hv-24x7: Dont create sysfs event files for dummy events

From: Kajol Jain <hidden>
Date: 2020-12-17 11:38:23

hv_24x7 performance monitoring unit creates list of supported events
from the event catalog obtained via HCALL. hv_24x7 catalog could also
contain invalid or dummy events (with names like FREE_  or CPM_FREE_ so
on). These events does not have any hardware counters backing them.
So patch adds a check to string compare the event names to filter
out them.

Signed-off-by: Kajol Jain <redacted>
---
 arch/powerpc/perf/hv-24x7.c | 8 ++++++++
 1 file changed, 8 insertions(+)
diff --git a/arch/powerpc/perf/hv-24x7.c b/arch/powerpc/perf/hv-24x7.c
index 6e7e820508df..c3252d8a7818 100644
--- a/arch/powerpc/perf/hv-24x7.c
+++ b/arch/powerpc/perf/hv-24x7.c
@@ -894,6 +894,11 @@ static int create_events_from_catalog(struct attribute ***events_,
 
 		name = event_name(event, &nl);
 
+		if (strstr(name, "FREE_")) {
+			pr_info("invalid event %zu (%.*s)\n", event_idx, nl, name);
+			junk_events++;
+			continue;
+		}
 		if (event->event_group_record_len == 0) {
 			pr_devel("invalid event %zu (%.*s): group_record_len == 0, skipping\n",
 					event_idx, nl, name);
@@ -955,6 +960,9 @@ static int create_events_from_catalog(struct attribute ***events_,
 			continue;
 
 		name  = event_name(event, &nl);
+		if (strstr(name, "FREE_"))
+			continue;
+
 		nonce = event_uniq_add(&ev_uniq, name, nl, event->domain);
 		ct    = event_data_to_attrs(event_idx, events + event_attr_ct,
 					    event, nonce);
-- 
2.26.2

Re: [PATCH] powerpc/perf/hv-24x7: Dont create sysfs event files for dummy events

From: Madhavan Srinivasan <maddy@linux.ibm.com>
Date: 2020-12-17 11:46:56

On 12/17/20 5:02 PM, Kajol Jain wrote:
hv_24x7 performance monitoring unit creates list of supported events
from the event catalog obtained via HCALL. hv_24x7 catalog could also
contain invalid or dummy events (with names like FREE_  or CPM_FREE_ so

Can you also include " RESERVED_NEST*" as part of the check.

# ls /sys/devices/hv_24x7/events | grep RESERVED
RESERVED_NEST1
RESERVED_NEST10
RESERVED_NEST11
RESERVED_NEST12
...


Maddy

quoted hunk
on). These events does not have any hardware counters backing them.
So patch adds a check to string compare the event names to filter
out them.

Signed-off-by: Kajol Jain <redacted>
---
  arch/powerpc/perf/hv-24x7.c | 8 ++++++++
  1 file changed, 8 insertions(+)
diff --git a/arch/powerpc/perf/hv-24x7.c b/arch/powerpc/perf/hv-24x7.c
index 6e7e820508df..c3252d8a7818 100644
--- a/arch/powerpc/perf/hv-24x7.c
+++ b/arch/powerpc/perf/hv-24x7.c
@@ -894,6 +894,11 @@ static int create_events_from_catalog(struct attribute ***events_,

  		name = event_name(event, &nl);

+		if (strstr(name, "FREE_")) {
+			pr_info("invalid event %zu (%.*s)\n", event_idx, nl, name);
+			junk_events++;
+			continue;
+		}
  		if (event->event_group_record_len == 0) {
  			pr_devel("invalid event %zu (%.*s): group_record_len == 0, skipping\n",
  					event_idx, nl, name);
@@ -955,6 +960,9 @@ static int create_events_from_catalog(struct attribute ***events_,
  			continue;

  		name  = event_name(event, &nl);
+		if (strstr(name, "FREE_"))
+			continue;
+
  		nonce = event_uniq_add(&ev_uniq, name, nl, event->domain);
  		ct    = event_data_to_attrs(event_idx, events + event_attr_ct,
  					    event, nonce);

Re: [PATCH] powerpc/perf/hv-24x7: Dont create sysfs event files for dummy events

From: kajoljain <hidden>
Date: 2020-12-17 11:55:56


On 12/17/20 5:10 PM, Madhavan Srinivasan wrote:
On 12/17/20 5:02 PM, Kajol Jain wrote:
quoted
hv_24x7 performance monitoring unit creates list of supported events
from the event catalog obtained via HCALL. hv_24x7 catalog could also
contain invalid or dummy events (with names like FREE_  or CPM_FREE_ so

Can you also include " RESERVED_NEST*" as part of the check.
Hi Maddy,
   Sure, I will add this check.

Thanks,
Kajol Jain
# ls /sys/devices/hv_24x7/events | grep RESERVED
RESERVED_NEST1
RESERVED_NEST10
RESERVED_NEST11
RESERVED_NEST12
...


Maddy

quoted
on). These events does not have any hardware counters backing them.
So patch adds a check to string compare the event names to filter
out them.

Signed-off-by: Kajol Jain <redacted>
---
  arch/powerpc/perf/hv-24x7.c | 8 ++++++++
  1 file changed, 8 insertions(+)
diff --git a/arch/powerpc/perf/hv-24x7.c b/arch/powerpc/perf/hv-24x7.c
index 6e7e820508df..c3252d8a7818 100644
--- a/arch/powerpc/perf/hv-24x7.c
+++ b/arch/powerpc/perf/hv-24x7.c
@@ -894,6 +894,11 @@ static int create_events_from_catalog(struct attribute ***events_,
          name = event_name(event, &nl);

+        if (strstr(name, "FREE_")) {
+            pr_info("invalid event %zu (%.*s)\n", event_idx, nl, name);
+            junk_events++;
+            continue;
+        }
          if (event->event_group_record_len == 0) {
              pr_devel("invalid event %zu (%.*s): group_record_len == 0, skipping\n",
                      event_idx, nl, name);
@@ -955,6 +960,9 @@ static int create_events_from_catalog(struct attribute ***events_,
              continue;

          name  = event_name(event, &nl);
+        if (strstr(name, "FREE_"))
+            continue;
+
          nonce = event_uniq_add(&ev_uniq, name, nl, event->domain);
          ct    = event_data_to_attrs(event_idx, events + event_attr_ct,
                          event, nonce);

Re: [PATCH] powerpc/perf/hv-24x7: Dont create sysfs event files for dummy events

From: Michael Ellerman <mpe@ellerman.id.au>
Date: 2020-12-18 00:58:08

Kajol Jain [off-list ref] writes:
quoted hunk
hv_24x7 performance monitoring unit creates list of supported events
from the event catalog obtained via HCALL. hv_24x7 catalog could also
contain invalid or dummy events (with names like FREE_  or CPM_FREE_ so
on). These events does not have any hardware counters backing them.
So patch adds a check to string compare the event names to filter
out them.

Signed-off-by: Kajol Jain <redacted>
---
 arch/powerpc/perf/hv-24x7.c | 8 ++++++++
 1 file changed, 8 insertions(+)
diff --git a/arch/powerpc/perf/hv-24x7.c b/arch/powerpc/perf/hv-24x7.c
index 6e7e820508df..c3252d8a7818 100644
--- a/arch/powerpc/perf/hv-24x7.c
+++ b/arch/powerpc/perf/hv-24x7.c
@@ -894,6 +894,11 @@ static int create_events_from_catalog(struct attribute ***events_,
 
 		name = event_name(event, &nl);
 
+		if (strstr(name, "FREE_")) {
+			pr_info("invalid event %zu (%.*s)\n", event_idx, nl, name);
+			junk_events++;
+			continue;
I don't think we want a print for each event, just one at the end saying
"Dropped %d invalid events" would be preferable I think.

quoted hunk
+		}
 		if (event->event_group_record_len == 0) {
 			pr_devel("invalid event %zu (%.*s): group_record_len == 0, skipping\n",
 					event_idx, nl, name);
@@ -955,6 +960,9 @@ static int create_events_from_catalog(struct attribute ***events_,
 			continue;
 
 		name  = event_name(event, &nl);
+		if (strstr(name, "FREE_"))
+			continue;
Would be nice if the string comparison was in a single place, ie. in a
helper function.

cheers

Re: [PATCH] powerpc/perf/hv-24x7: Dont create sysfs event files for dummy events

From: kajoljain <hidden>
Date: 2020-12-18 07:53:30


On 12/18/20 6:26 AM, Michael Ellerman wrote:
Kajol Jain [off-list ref] writes:
quoted
hv_24x7 performance monitoring unit creates list of supported events
from the event catalog obtained via HCALL. hv_24x7 catalog could also
contain invalid or dummy events (with names like FREE_  or CPM_FREE_ so
on). These events does not have any hardware counters backing them.
So patch adds a check to string compare the event names to filter
out them.

Signed-off-by: Kajol Jain <redacted>
---
 arch/powerpc/perf/hv-24x7.c | 8 ++++++++
 1 file changed, 8 insertions(+)
diff --git a/arch/powerpc/perf/hv-24x7.c b/arch/powerpc/perf/hv-24x7.c
index 6e7e820508df..c3252d8a7818 100644
--- a/arch/powerpc/perf/hv-24x7.c
+++ b/arch/powerpc/perf/hv-24x7.c
@@ -894,6 +894,11 @@ static int create_events_from_catalog(struct attribute ***events_,
 
 		name = event_name(event, &nl);
 
+		if (strstr(name, "FREE_")) {
+			pr_info("invalid event %zu (%.*s)\n", event_idx, nl, name);
+			junk_events++;
+			continue;
I don't think we want a print for each event, just one at the end saying
"Dropped %d invalid events" would be preferable I think.
Hi Michael,
  Sure I will remove prints for each event. Having one print for number of dropped
events may not be useful. So I will drop that too.
quoted
+		}
 		if (event->event_group_record_len == 0) {
 			pr_devel("invalid event %zu (%.*s): group_record_len == 0, skipping\n",
 					event_idx, nl, name);
@@ -955,6 +960,9 @@ static int create_events_from_catalog(struct attribute ***events_,
 			continue;
 
 		name  = event_name(event, &nl);
+		if (strstr(name, "FREE_"))
+			continue;
Would be nice if the string comparison was in a single place, ie. in a
helper function.
Sure I will make that change.

Thanks,
Kajol Jain
cheers
Keyboard shortcuts
hback out one level
jnext message in thread
kprevious message in thread
ldrill in
Escclose help / fold thread tree
?toggle this help