Merge branch 'samples-colnames' of https://github.com/parallel-fs-utils/fio
[fio.git] / cgroup.h
index d91f7e7bc6fca7114cd7ebc605fe74eba04ad24d..10313b7dbccf1e43f83016dc444856fc0dc7815a 100644 (file)
--- a/cgroup.h
+++ b/cgroup.h
@@ -3,25 +3,32 @@
 
 #ifdef FIO_HAVE_CGROUPS
 
-int cgroup_setup(struct thread_data *, struct flist_head *, char **);
-void cgroup_shutdown(struct thread_data *, char **);
+struct cgroup_mnt {
+       char *path;
+       bool cgroup2;
+};
+
+int cgroup_setup(struct thread_data *, struct flist_head *, struct cgroup_mnt **);
+void cgroup_shutdown(struct thread_data *, struct cgroup_mnt *);
 
 void cgroup_kill(struct flist_head *list);
 
 #else
 
+struct cgroup_mnt;
+
 static inline int cgroup_setup(struct thread_data *td, struct flist_head *list,
-                              char **mnt)
+                              struct cgroup_mnt **mnt)
 {
        td_verror(td, EINVAL, "cgroup_setup");
        return 1;
 }
 
-static inline void cgroup_shutdown(struct thread_data *td, char **mnt)
+static inline void cgroup_shutdown(struct thread_data *td, struct cgroup_mnt *mnt)
 {
 }
 
-static inline void void cgroup_kill(struct flist_head *list)
+static inline void cgroup_kill(struct flist_head *list)
 {
 }