btrfs-progs: mkfs/rootdir: Fix inline extent creation check
[platform/upstream/btrfs-progs.git] / btrfs-list.h
index 724e973..6e5fc77 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2012 Fujitsu.  All rights reserved.
+ * Copyright (C) 2012 FUJITSU LIMITED.  All rights reserved.
  *
  * This program is free software; you can redistribute it and/or
  * modify it under the terms of the GNU General Public
  * Boston, MA 021110-1307, USA.
  */
 
+#ifndef __BTRFS_LIST_H__
+#define __BTRFS_LIST_H__
+
 #if BTRFS_FLAT_INCLUDES
 #include "kerncompat.h"
+#include "rbtree.h"
+#include "ioctl.h"
 #else
 #include <btrfs/kerncompat.h>
+#include <btrfs/rbtree.h>
+#include <btrfs/ioctl.h>
 #endif /* BTRFS_FLAT_INCLUDES */
 
-#define BTRFS_LIST_LAYOUT_DEFAULT      0
-#define BTRFS_LIST_LAYOUT_TABLE        1
-#define BTRFS_LIST_LAYOUT_RAW          2
+#include <time.h>
+
+enum btrfs_list_layout {
+       BTRFS_LIST_LAYOUT_DEFAULT = 0,
+       BTRFS_LIST_LAYOUT_TABLE,
+       BTRFS_LIST_LAYOUT_RAW
+};
 
 /*
  * one of these for each root we find.
@@ -61,6 +72,7 @@ struct root_info {
 
        u8 uuid[BTRFS_UUID_SIZE];
        u8 puuid[BTRFS_UUID_SIZE];
+       u8 ruuid[BTRFS_UUID_SIZE];
 
        /* path from the subvol we live in to this root, including the
         * root's name.  This is null until we do the extra lookup ioctl.
@@ -110,6 +122,7 @@ enum btrfs_list_column_enum {
        BTRFS_LIST_TOP_LEVEL,
        BTRFS_LIST_OTIME,
        BTRFS_LIST_PUUID,
+       BTRFS_LIST_RUUID,
        BTRFS_LIST_UUID,
        BTRFS_LIST_PATH,
        BTRFS_LIST_ALL,
@@ -149,17 +162,19 @@ int btrfs_list_parse_filter_string(char *optarg,
                                   enum btrfs_list_filter_enum type);
 void btrfs_list_setup_print_column(enum btrfs_list_column_enum column);
 struct btrfs_list_filter_set *btrfs_list_alloc_filter_set(void);
-void btrfs_list_free_filter_set(struct btrfs_list_filter_set *filter_set);
-int btrfs_list_setup_filter(struct btrfs_list_filter_set **filter_set,
+void btrfs_list_setup_filter(struct btrfs_list_filter_set **filter_set,
                            enum btrfs_list_filter_enum filter, u64 data);
 struct btrfs_list_comparer_set *btrfs_list_alloc_comparer_set(void);
-void btrfs_list_free_comparer_set(struct btrfs_list_comparer_set *comp_set);
 
 int btrfs_list_subvols_print(int fd, struct btrfs_list_filter_set *filter_set,
                       struct btrfs_list_comparer_set *comp_set,
-                      int is_tab_result, int full_path, char *raw_prefix);
+                      enum btrfs_list_layout layot, int full_path,
+                      const char *raw_prefix);
 int btrfs_list_find_updated_files(int fd, u64 root_id, u64 oldest_gen);
 int btrfs_list_get_default_subvolume(int fd, u64 *default_id);
 char *btrfs_list_path_for_root(int fd, u64 root);
 int btrfs_list_get_path_rootid(int fd, u64 *treeid);
 int btrfs_get_subvol(int fd, struct root_info *the_ri);
+int btrfs_get_toplevel_subvol(int fd, struct root_info *the_ri);
+
+#endif