Shailabh Nagar | ca74e92 | 2006-07-14 00:24:36 -0700 | [diff] [blame] | 1 | /* delayacct.h - per-task delay accounting |
| 2 | * |
| 3 | * Copyright (C) Shailabh Nagar, IBM Corp. 2006 |
| 4 | * |
| 5 | * This program is free software; you can redistribute it and/or modify |
| 6 | * it under the terms of the GNU General Public License as published by |
| 7 | * the Free Software Foundation; either version 2 of the License, or |
| 8 | * (at your option) any later version. |
| 9 | * |
| 10 | * This program is distributed in the hope that it will be useful, |
| 11 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 12 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See |
| 13 | * the GNU General Public License for more details. |
| 14 | * |
| 15 | */ |
| 16 | |
| 17 | #ifndef _LINUX_DELAYACCT_H |
| 18 | #define _LINUX_DELAYACCT_H |
| 19 | |
Ingo Molnar | 4025819 | 2017-02-01 11:58:42 +0100 | [diff] [blame^] | 20 | #include <uapi/linux/taskstats.h> |
Shailabh Nagar | ca74e92 | 2006-07-14 00:24:36 -0700 | [diff] [blame] | 21 | #include <linux/sched.h> |
Tejun Heo | 5a0e3ad | 2010-03-24 17:04:11 +0900 | [diff] [blame] | 22 | #include <linux/slab.h> |
Shailabh Nagar | ca74e92 | 2006-07-14 00:24:36 -0700 | [diff] [blame] | 23 | |
Shailabh Nagar | 0ff9224 | 2006-07-14 00:24:37 -0700 | [diff] [blame] | 24 | /* |
| 25 | * Per-task flags relevant to delay accounting |
| 26 | * maintained privately to avoid exhausting similar flags in sched.h:PF_* |
| 27 | * Used to set current->delays->flags |
| 28 | */ |
| 29 | #define DELAYACCT_PF_SWAPIN 0x00000001 /* I am doing a swapin */ |
Balbir Singh | 846c7bb | 2007-10-18 23:39:44 -0700 | [diff] [blame] | 30 | #define DELAYACCT_PF_BLKIO 0x00000002 /* I am waiting on IO */ |
Shailabh Nagar | 0ff9224 | 2006-07-14 00:24:37 -0700 | [diff] [blame] | 31 | |
Shailabh Nagar | ca74e92 | 2006-07-14 00:24:36 -0700 | [diff] [blame] | 32 | #ifdef CONFIG_TASK_DELAY_ACCT |
| 33 | |
| 34 | extern int delayacct_on; /* Delay accounting turned on/off */ |
Christoph Lameter | e18b890 | 2006-12-06 20:33:20 -0800 | [diff] [blame] | 35 | extern struct kmem_cache *delayacct_cache; |
Shailabh Nagar | ca74e92 | 2006-07-14 00:24:36 -0700 | [diff] [blame] | 36 | extern void delayacct_init(void); |
| 37 | extern void __delayacct_tsk_init(struct task_struct *); |
| 38 | extern void __delayacct_tsk_exit(struct task_struct *); |
Shailabh Nagar | 0ff9224 | 2006-07-14 00:24:37 -0700 | [diff] [blame] | 39 | extern void __delayacct_blkio_start(void); |
| 40 | extern void __delayacct_blkio_end(void); |
Shailabh Nagar | 6f44993 | 2006-07-14 00:24:41 -0700 | [diff] [blame] | 41 | extern int __delayacct_add_tsk(struct taskstats *, struct task_struct *); |
Shailabh Nagar | 2589045 | 2006-07-14 00:24:43 -0700 | [diff] [blame] | 42 | extern __u64 __delayacct_blkio_ticks(struct task_struct *); |
Keika Kobayashi | 873b477 | 2008-07-25 01:48:52 -0700 | [diff] [blame] | 43 | extern void __delayacct_freepages_start(void); |
| 44 | extern void __delayacct_freepages_end(void); |
Shailabh Nagar | ca74e92 | 2006-07-14 00:24:36 -0700 | [diff] [blame] | 45 | |
Balbir Singh | 846c7bb | 2007-10-18 23:39:44 -0700 | [diff] [blame] | 46 | static inline int delayacct_is_task_waiting_on_io(struct task_struct *p) |
| 47 | { |
| 48 | if (p->delays) |
| 49 | return (p->delays->flags & DELAYACCT_PF_BLKIO); |
| 50 | else |
| 51 | return 0; |
| 52 | } |
| 53 | |
Shailabh Nagar | ca74e92 | 2006-07-14 00:24:36 -0700 | [diff] [blame] | 54 | static inline void delayacct_set_flag(int flag) |
| 55 | { |
| 56 | if (current->delays) |
| 57 | current->delays->flags |= flag; |
| 58 | } |
| 59 | |
| 60 | static inline void delayacct_clear_flag(int flag) |
| 61 | { |
| 62 | if (current->delays) |
| 63 | current->delays->flags &= ~flag; |
| 64 | } |
| 65 | |
| 66 | static inline void delayacct_tsk_init(struct task_struct *tsk) |
| 67 | { |
| 68 | /* reinitialize in case parent's non-null pointer was dup'ed*/ |
| 69 | tsk->delays = NULL; |
Shailabh Nagar | 163ecdf | 2006-07-30 03:03:11 -0700 | [diff] [blame] | 70 | if (delayacct_on) |
Shailabh Nagar | ca74e92 | 2006-07-14 00:24:36 -0700 | [diff] [blame] | 71 | __delayacct_tsk_init(tsk); |
| 72 | } |
| 73 | |
Shailabh Nagar | 35df17c | 2006-08-31 21:27:38 -0700 | [diff] [blame] | 74 | /* Free tsk->delays. Called from bad fork and __put_task_struct |
| 75 | * where there's no risk of tsk->delays being accessed elsewhere |
| 76 | */ |
| 77 | static inline void delayacct_tsk_free(struct task_struct *tsk) |
Shailabh Nagar | ca74e92 | 2006-07-14 00:24:36 -0700 | [diff] [blame] | 78 | { |
| 79 | if (tsk->delays) |
Shailabh Nagar | 35df17c | 2006-08-31 21:27:38 -0700 | [diff] [blame] | 80 | kmem_cache_free(delayacct_cache, tsk->delays); |
| 81 | tsk->delays = NULL; |
Shailabh Nagar | ca74e92 | 2006-07-14 00:24:36 -0700 | [diff] [blame] | 82 | } |
| 83 | |
Shailabh Nagar | 0ff9224 | 2006-07-14 00:24:37 -0700 | [diff] [blame] | 84 | static inline void delayacct_blkio_start(void) |
| 85 | { |
Balbir Singh | 846c7bb | 2007-10-18 23:39:44 -0700 | [diff] [blame] | 86 | delayacct_set_flag(DELAYACCT_PF_BLKIO); |
Shailabh Nagar | 0ff9224 | 2006-07-14 00:24:37 -0700 | [diff] [blame] | 87 | if (current->delays) |
| 88 | __delayacct_blkio_start(); |
| 89 | } |
| 90 | |
| 91 | static inline void delayacct_blkio_end(void) |
| 92 | { |
| 93 | if (current->delays) |
| 94 | __delayacct_blkio_end(); |
Balbir Singh | 846c7bb | 2007-10-18 23:39:44 -0700 | [diff] [blame] | 95 | delayacct_clear_flag(DELAYACCT_PF_BLKIO); |
Shailabh Nagar | 0ff9224 | 2006-07-14 00:24:37 -0700 | [diff] [blame] | 96 | } |
| 97 | |
Shailabh Nagar | 6f44993 | 2006-07-14 00:24:41 -0700 | [diff] [blame] | 98 | static inline int delayacct_add_tsk(struct taskstats *d, |
| 99 | struct task_struct *tsk) |
| 100 | { |
Shailabh Nagar | 163ecdf | 2006-07-30 03:03:11 -0700 | [diff] [blame] | 101 | if (!delayacct_on || !tsk->delays) |
Shailabh Nagar | 6f44993 | 2006-07-14 00:24:41 -0700 | [diff] [blame] | 102 | return 0; |
| 103 | return __delayacct_add_tsk(d, tsk); |
| 104 | } |
| 105 | |
Shailabh Nagar | 2589045 | 2006-07-14 00:24:43 -0700 | [diff] [blame] | 106 | static inline __u64 delayacct_blkio_ticks(struct task_struct *tsk) |
| 107 | { |
| 108 | if (tsk->delays) |
| 109 | return __delayacct_blkio_ticks(tsk); |
| 110 | return 0; |
| 111 | } |
| 112 | |
Keika Kobayashi | 873b477 | 2008-07-25 01:48:52 -0700 | [diff] [blame] | 113 | static inline void delayacct_freepages_start(void) |
| 114 | { |
| 115 | if (current->delays) |
| 116 | __delayacct_freepages_start(); |
| 117 | } |
| 118 | |
| 119 | static inline void delayacct_freepages_end(void) |
| 120 | { |
| 121 | if (current->delays) |
| 122 | __delayacct_freepages_end(); |
| 123 | } |
| 124 | |
Shailabh Nagar | ca74e92 | 2006-07-14 00:24:36 -0700 | [diff] [blame] | 125 | #else |
| 126 | static inline void delayacct_set_flag(int flag) |
| 127 | {} |
| 128 | static inline void delayacct_clear_flag(int flag) |
| 129 | {} |
| 130 | static inline void delayacct_init(void) |
| 131 | {} |
| 132 | static inline void delayacct_tsk_init(struct task_struct *tsk) |
| 133 | {} |
Shailabh Nagar | 35df17c | 2006-08-31 21:27:38 -0700 | [diff] [blame] | 134 | static inline void delayacct_tsk_free(struct task_struct *tsk) |
Shailabh Nagar | ca74e92 | 2006-07-14 00:24:36 -0700 | [diff] [blame] | 135 | {} |
Shailabh Nagar | 0ff9224 | 2006-07-14 00:24:37 -0700 | [diff] [blame] | 136 | static inline void delayacct_blkio_start(void) |
| 137 | {} |
| 138 | static inline void delayacct_blkio_end(void) |
| 139 | {} |
Shailabh Nagar | 6f44993 | 2006-07-14 00:24:41 -0700 | [diff] [blame] | 140 | static inline int delayacct_add_tsk(struct taskstats *d, |
| 141 | struct task_struct *tsk) |
| 142 | { return 0; } |
Shailabh Nagar | 2589045 | 2006-07-14 00:24:43 -0700 | [diff] [blame] | 143 | static inline __u64 delayacct_blkio_ticks(struct task_struct *tsk) |
| 144 | { return 0; } |
Balbir Singh | 846c7bb | 2007-10-18 23:39:44 -0700 | [diff] [blame] | 145 | static inline int delayacct_is_task_waiting_on_io(struct task_struct *p) |
| 146 | { return 0; } |
Keika Kobayashi | 873b477 | 2008-07-25 01:48:52 -0700 | [diff] [blame] | 147 | static inline void delayacct_freepages_start(void) |
| 148 | {} |
| 149 | static inline void delayacct_freepages_end(void) |
| 150 | {} |
| 151 | |
Shailabh Nagar | ca74e92 | 2006-07-14 00:24:36 -0700 | [diff] [blame] | 152 | #endif /* CONFIG_TASK_DELAY_ACCT */ |
| 153 | |
| 154 | #endif |