diff options
author | Linus Torvalds <torvalds@linux-foundation.org> | 2022-06-06 02:58:27 +0300 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2022-06-06 02:58:27 +0300 |
commit | e17fee8976c3d2ccf9add6d6c8912a37b025d840 (patch) | |
tree | 86f877aad442ee8ac003e74b4427d653c26d6878 /include/uapi | |
parent | e1cff7002b716bd0b5f5f4afd4273c99aa8644be (diff) | |
parent | 662ce1dc9caf493c309200edbe38d186f1ea20d0 (diff) | |
download | linux-e17fee8976c3d2ccf9add6d6c8912a37b025d840.tar.xz |
Merge tag 'mm-nonmm-stable-2022-06-05' of git://git.kernel.org/pub/scm/linux/kernel/git/akpm/mm
Pull delay-accounting update from Andrew Morton:
"A single featurette for delay accounting.
Delayed a bit because, unusually, it had dependencies on both the
mm-stable and mm-nonmm-stable queues"
* tag 'mm-nonmm-stable-2022-06-05' of git://git.kernel.org/pub/scm/linux/kernel/git/akpm/mm:
delayacct: track delays from write-protect copy
Diffstat (limited to 'include/uapi')
-rw-r--r-- | include/uapi/linux/taskstats.h | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/include/uapi/linux/taskstats.h b/include/uapi/linux/taskstats.h index 736154171489..a7f5b11a8f1b 100644 --- a/include/uapi/linux/taskstats.h +++ b/include/uapi/linux/taskstats.h @@ -34,7 +34,7 @@ */ -#define TASKSTATS_VERSION 12 +#define TASKSTATS_VERSION 13 #define TS_COMM_LEN 32 /* should be >= TASK_COMM_LEN * in linux/sched.h */ @@ -194,6 +194,10 @@ struct taskstats { __u64 ac_exe_dev; /* program binary device ID */ __u64 ac_exe_inode; /* program binary inode number */ /* v12 end */ + + /* v13: Delay waiting for write-protect copy */ + __u64 wpcopy_count; + __u64 wpcopy_delay_total; }; |