]> pilppa.org Git - linux-2.6-omap-h63xx.git/blobdiff - include/linux/task_io_accounting.h
FRV: Wire up new system calls
[linux-2.6-omap-h63xx.git] / include / linux / task_io_accounting.h
index 44d00e9cceea551256df7428be8856e719d04ef1..5e88afc9a2fbd5b5e82bc9486087d9f9017cadcd 100644 (file)
@@ -8,8 +8,19 @@
  * Blame akpm@osdl.org for all this.
  */
 
-#ifdef CONFIG_TASK_IO_ACCOUNTING
 struct task_io_accounting {
+#ifdef CONFIG_TASK_XACCT
+       /* bytes read */
+       u64 rchar;
+       /*  bytes written */
+       u64 wchar;
+       /* # of read syscalls */
+       u64 syscr;
+       /* # of write syscalls */
+       u64 syscw;
+#endif /* CONFIG_TASK_XACCT */
+
+#ifdef CONFIG_TASK_IO_ACCOUNTING
        /*
         * The number of bytes which this task has caused to be read from
         * storage.
@@ -30,8 +41,5 @@ struct task_io_accounting {
         * information loss in doing that.
         */
        u64 cancelled_write_bytes;
+#endif /* CONFIG_TASK_IO_ACCOUNTING */
 };
-#else
-struct task_io_accounting {
-};
-#endif