diff options
author | Glenn Elliott <gelliott@cs.unc.edu> | 2013-01-18 11:00:14 -0500 |
---|---|---|
committer | Glenn Elliott <gelliott@cs.unc.edu> | 2013-01-18 11:00:14 -0500 |
commit | c1cda76c0cfb184ab241c5fbde66f7ca92da8e79 (patch) | |
tree | adbde26904faab8662c70aa7fb224383165c7534 /include/linux/interrupt.h | |
parent | 92801864bece1ccab9cc8b3ad73c1edb667a27fb (diff) |
Remove tasklet::owner field (just commented out).
Diffstat (limited to 'include/linux/interrupt.h')
-rw-r--r-- | include/linux/interrupt.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/include/linux/interrupt.h b/include/linux/interrupt.h index 9fc31289a1bb..af52b5c497b9 100644 --- a/include/linux/interrupt.h +++ b/include/linux/interrupt.h | |||
@@ -501,10 +501,11 @@ struct tasklet_struct | |||
501 | atomic_t count; | 501 | atomic_t count; |
502 | void (*func)(unsigned long); | 502 | void (*func)(unsigned long); |
503 | unsigned long data; | 503 | unsigned long data; |
504 | 504 | #if 0 | |
505 | #if defined(CONFIG_LITMUS_SOFTIRQD) || defined(CONFIG_LITMUS_PAI_SOFTIRQD) | 505 | #if defined(CONFIG_LITMUS_SOFTIRQD) || defined(CONFIG_LITMUS_PAI_SOFTIRQD) |
506 | struct task_struct *owner; | 506 | struct task_struct *owner; |
507 | #endif | 507 | #endif |
508 | #endif | ||
508 | }; | 509 | }; |
509 | 510 | ||
510 | struct tasklet_head | 511 | struct tasklet_head |