aboutsummaryrefslogtreecommitdiffstats
path: root/include/uapi
diff options
context:
space:
mode:
authorLinus Torvalds <torvalds@linux-foundation.org>2022-06-05 16:58:27 -0700
committerLinus Torvalds <torvalds@linux-foundation.org>2022-06-05 16:58:27 -0700
commite17fee8976c3d2ccf9add6d6c8912a37b025d840 (patch)
tree86f877aad442ee8ac003e74b4427d653c26d6878 /include/uapi
parentbluetooth: don't use bitmaps for random flag accesses (diff)
parentdelayacct: track delays from write-protect copy (diff)
downloadlinux-dev-e17fee8976c3d2ccf9add6d6c8912a37b025d840.tar.xz
linux-dev-e17fee8976c3d2ccf9add6d6c8912a37b025d840.zip
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.h6
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;
};