summaryrefslogtreecommitdiffstats
path: root/tapset/aux_syscalls.stp
diff options
context:
space:
mode:
authorDavid Smith <dsmith@redhat.com>2009-11-17 12:52:35 -0600
committerDavid Smith <dsmith@redhat.com>2009-11-17 12:52:35 -0600
commit9fdaa114d043b284dd51d545ee2bfaec6d33857b (patch)
tree02f51b7720a1804a3f8c80cd1813f6148b367d8e /tapset/aux_syscalls.stp
parentb0490786a904cbd19fb04c3d66ac3c277bfc2c71 (diff)
downloadsystemtap-steved-9fdaa114d043b284dd51d545ee2bfaec6d33857b.tar.gz
systemtap-steved-9fdaa114d043b284dd51d545ee2bfaec6d33857b.tar.xz
systemtap-steved-9fdaa114d043b284dd51d545ee2bfaec6d33857b.zip
PR 10974 fix. Fixed aux_syscalls.stp for RHEL5.
* tapset/aux_syscalls.stp: Only define entries for IRQF_NOBALANCING/IRQF_IRQPOLL if they exist.
Diffstat (limited to 'tapset/aux_syscalls.stp')
-rw-r--r--tapset/aux_syscalls.stp4
1 files changed, 4 insertions, 0 deletions
diff --git a/tapset/aux_syscalls.stp b/tapset/aux_syscalls.stp
index 5435d3aa..7dac038d 100644
--- a/tapset/aux_syscalls.stp
+++ b/tapset/aux_syscalls.stp
@@ -1910,8 +1910,12 @@ static const _stp_val_array const _stp_irq_list[] = {
V(IRQF_PROBE_SHARED),
V(IRQF_TIMER),
V(IRQF_PERCPU),
+#ifdef IRQF_NOBALANCING
V(IRQF_NOBALANCING),
+#endif
+#ifdef IRQF_IRQPOLL
V(IRQF_IRQPOLL),
+#endif
V(IRQF_ONESHOT),
{0, NULL}
};