]> git.apps.os.sepia.ceph.com Git - ceph.git/commitdiff
os/ZFS: move to os/fs
authorSage Weil <sage@redhat.com>
Wed, 23 Dec 2015 16:32:28 +0000 (11:32 -0500)
committerSage Weil <sage@redhat.com>
Fri, 1 Jan 2016 18:08:52 +0000 (13:08 -0500)
Signed-off-by: Sage Weil <sage@redhat.com>
src/os/Makefile.am
src/os/ZFS.cc [deleted file]
src/os/ZFS.h [deleted file]
src/os/filestore/ZFSFileStoreBackend.h
src/os/fs/ZFS.cc [new file with mode: 0644]
src/os/fs/ZFS.h [new file with mode: 0644]

index abba3fcbd4d9332777c43203885a0e0ff7d68d5e..bd2bac7d2756512a776782b7944520c7e29ad270 100644 (file)
@@ -99,10 +99,10 @@ noinst_HEADERS += \
        os/ObjectStore.h
 
 if WITH_LIBZFS
-libos_zfs_a_SOURCES = os/ZFS.cc
+libos_zfs_a_SOURCES = os/fs/ZFS.cc
 libos_zfs_a_CXXFLAGS = ${AM_CXXFLAGS} ${LIBZFS_CFLAGS}
 noinst_LIBRARIES += libos_zfs.a
-noinst_HEADERS += os/ZFS.h
+noinst_HEADERS += os/fs/ZFS.h
 endif
 
 ceph_bluefs_tool_SOURCES = os/bluestore/bluefs_tool.cc
diff --git a/src/os/ZFS.cc b/src/os/ZFS.cc
deleted file mode 100644 (file)
index 0252079..0000000
+++ /dev/null
@@ -1,83 +0,0 @@
-// -*- mode:C++; tab-width:8; c-basic-offset:2; indent-tabs-mode:t -*-
-// vim: ts=8 sw=2 smarttab
-
-#define HAVE_IOCTL_IN_SYS_IOCTL_H
-#include <libzfs.h>
-#include "ZFS.h"
-
-const int ZFS::TYPE_FILESYSTEM         = ZFS_TYPE_FILESYSTEM;
-const int ZFS::TYPE_SNAPSHOT   = ZFS_TYPE_SNAPSHOT;
-const int ZFS::TYPE_VOLUME     = ZFS_TYPE_VOLUME;
-const int ZFS::TYPE_DATASET    = ZFS_TYPE_DATASET;
-
-ZFS::~ZFS()
-{
-  if (g_zfs)
-    ::libzfs_fini((libzfs_handle_t*)g_zfs);
-}
-
-int ZFS::init()
-{
-  g_zfs = ::libzfs_init();
-  return g_zfs ? 0 : -EINVAL;
-}
-
-ZFS::Handle *ZFS::open(const char *n, int t)
-{
-  return (ZFS::Handle*)::zfs_open((libzfs_handle_t*)g_zfs, n, (zfs_type_t)t);
-}
-
-void ZFS::close(ZFS::Handle *h)
-{
-  ::zfs_close((zfs_handle_t*)h);
-}
-
-const char *ZFS::get_name(ZFS::Handle *h)
-{
-  return ::zfs_get_name((zfs_handle_t*)h);
-}
-
-ZFS::Handle *ZFS::path_to_zhandle(const char *p, int t)
-{
-  return ::zfs_path_to_zhandle((libzfs_handle_t*)g_zfs, (char *)p, (zfs_type_t)t);
-}
-
-int ZFS::create(const char *n, int t)
-{
-  return ::zfs_create((libzfs_handle_t*)g_zfs, n, (zfs_type_t)t, NULL);
-}
-
-int ZFS::snapshot(const char *n, bool r)
-{
-  return ::zfs_snapshot((libzfs_handle_t*)g_zfs, n, (boolean_t)r, NULL);
-}
-
-int ZFS::rollback(ZFS::Handle *h, ZFS::Handle *snap, bool f)
-{
-  return ::zfs_rollback((zfs_handle_t*)h, (zfs_handle_t*)snap, (boolean_t)f);
-}
-
-int ZFS::destroy_snaps(ZFS::Handle *h, const char *n, bool d)
-{
-  return ::zfs_destroy_snaps((zfs_handle_t*)h, (char *)n, (boolean_t)d);
-}
-
-bool ZFS::is_mounted(ZFS::Handle *h, char **p)
-{
-  return (bool)::zfs_is_mounted((zfs_handle_t*)h, p);
-}
-
-int ZFS::mount(ZFS::Handle *h, const char *o, int f)
-{
-  return ::zfs_mount((zfs_handle_t*)h, o, f);
-}
-
-int ZFS::umount(ZFS::Handle *h, const char *o, int f)
-{
-  return ::zfs_unmount((zfs_handle_t*)h, o, f);
-}
-
-int ZFS::iter_snapshots_sorted(ZFS::Handle *h, ZFS::iter_func f, void *d)
-{
-  return ::zfs_iter_snapshots_sorted((zfs_handle_t*)h, (zfs_iter_f)f, d);
-}
diff --git a/src/os/ZFS.h b/src/os/ZFS.h
deleted file mode 100644 (file)
index 3ebe111..0000000
+++ /dev/null
@@ -1,39 +0,0 @@
-// -*- mode:C++; tab-width:8; c-basic-offset:2; indent-tabs-mode:t -*-
-// vim: ts=8 sw=2 smarttab
-
-#ifndef CEPH_ZFS_H
-#define CEPH_ZFS_H
-
-// Simple wrapper to hide libzfs.h. (it conflicts with standard linux headers)
-class ZFS {
-  void *g_zfs;
-public:
-
-  static const int TYPE_FILESYSTEM;
-  static const int TYPE_SNAPSHOT;
-  static const int TYPE_VOLUME;
-  static const int TYPE_POOL;
-  static const int TYPE_DATASET;
-
-  typedef void Handle;
-  typedef int (*iter_func)(Handle *, void *);
-
-  static const char *get_name(Handle *);
-
-  ZFS() : g_zfs(NULL) {}
-  ~ZFS();
-  int init();
-  Handle *open(const char *, int);
-  void close(Handle *);
-  Handle *path_to_zhandle(const char *, int);
-  int create(const char *, int);
-  int snapshot(const char *, bool);
-  int rollback(Handle *, Handle *, bool);
-  int destroy_snaps(Handle *, const char *, bool);
-  int iter_snapshots_sorted(Handle *, iter_func, void *);
-  int mount(Handle *, const char *, int);
-  int umount(Handle *, const char *, int);
-  bool is_mounted(Handle *, char **);
-};
-
-#endif
index 8186d9ca957dea48b6744065634fa6d39fcc875d..f68b8abd6c1299c5eea8724ecca05063451894cb 100644 (file)
@@ -6,7 +6,7 @@
 
 #ifdef HAVE_LIBZFS
 #include "GenericFileStoreBackend.h"
-#include "ZFS.h"
+#include "os/fs/ZFS.h"
 
 class ZFSFileStoreBackend : public GenericFileStoreBackend {
 private:
diff --git a/src/os/fs/ZFS.cc b/src/os/fs/ZFS.cc
new file mode 100644 (file)
index 0000000..0252079
--- /dev/null
@@ -0,0 +1,83 @@
+// -*- mode:C++; tab-width:8; c-basic-offset:2; indent-tabs-mode:t -*-
+// vim: ts=8 sw=2 smarttab
+
+#define HAVE_IOCTL_IN_SYS_IOCTL_H
+#include <libzfs.h>
+#include "ZFS.h"
+
+const int ZFS::TYPE_FILESYSTEM         = ZFS_TYPE_FILESYSTEM;
+const int ZFS::TYPE_SNAPSHOT   = ZFS_TYPE_SNAPSHOT;
+const int ZFS::TYPE_VOLUME     = ZFS_TYPE_VOLUME;
+const int ZFS::TYPE_DATASET    = ZFS_TYPE_DATASET;
+
+ZFS::~ZFS()
+{
+  if (g_zfs)
+    ::libzfs_fini((libzfs_handle_t*)g_zfs);
+}
+
+int ZFS::init()
+{
+  g_zfs = ::libzfs_init();
+  return g_zfs ? 0 : -EINVAL;
+}
+
+ZFS::Handle *ZFS::open(const char *n, int t)
+{
+  return (ZFS::Handle*)::zfs_open((libzfs_handle_t*)g_zfs, n, (zfs_type_t)t);
+}
+
+void ZFS::close(ZFS::Handle *h)
+{
+  ::zfs_close((zfs_handle_t*)h);
+}
+
+const char *ZFS::get_name(ZFS::Handle *h)
+{
+  return ::zfs_get_name((zfs_handle_t*)h);
+}
+
+ZFS::Handle *ZFS::path_to_zhandle(const char *p, int t)
+{
+  return ::zfs_path_to_zhandle((libzfs_handle_t*)g_zfs, (char *)p, (zfs_type_t)t);
+}
+
+int ZFS::create(const char *n, int t)
+{
+  return ::zfs_create((libzfs_handle_t*)g_zfs, n, (zfs_type_t)t, NULL);
+}
+
+int ZFS::snapshot(const char *n, bool r)
+{
+  return ::zfs_snapshot((libzfs_handle_t*)g_zfs, n, (boolean_t)r, NULL);
+}
+
+int ZFS::rollback(ZFS::Handle *h, ZFS::Handle *snap, bool f)
+{
+  return ::zfs_rollback((zfs_handle_t*)h, (zfs_handle_t*)snap, (boolean_t)f);
+}
+
+int ZFS::destroy_snaps(ZFS::Handle *h, const char *n, bool d)
+{
+  return ::zfs_destroy_snaps((zfs_handle_t*)h, (char *)n, (boolean_t)d);
+}
+
+bool ZFS::is_mounted(ZFS::Handle *h, char **p)
+{
+  return (bool)::zfs_is_mounted((zfs_handle_t*)h, p);
+}
+
+int ZFS::mount(ZFS::Handle *h, const char *o, int f)
+{
+  return ::zfs_mount((zfs_handle_t*)h, o, f);
+}
+
+int ZFS::umount(ZFS::Handle *h, const char *o, int f)
+{
+  return ::zfs_unmount((zfs_handle_t*)h, o, f);
+}
+
+int ZFS::iter_snapshots_sorted(ZFS::Handle *h, ZFS::iter_func f, void *d)
+{
+  return ::zfs_iter_snapshots_sorted((zfs_handle_t*)h, (zfs_iter_f)f, d);
+}
diff --git a/src/os/fs/ZFS.h b/src/os/fs/ZFS.h
new file mode 100644 (file)
index 0000000..3ebe111
--- /dev/null
@@ -0,0 +1,39 @@
+// -*- mode:C++; tab-width:8; c-basic-offset:2; indent-tabs-mode:t -*-
+// vim: ts=8 sw=2 smarttab
+
+#ifndef CEPH_ZFS_H
+#define CEPH_ZFS_H
+
+// Simple wrapper to hide libzfs.h. (it conflicts with standard linux headers)
+class ZFS {
+  void *g_zfs;
+public:
+
+  static const int TYPE_FILESYSTEM;
+  static const int TYPE_SNAPSHOT;
+  static const int TYPE_VOLUME;
+  static const int TYPE_POOL;
+  static const int TYPE_DATASET;
+
+  typedef void Handle;
+  typedef int (*iter_func)(Handle *, void *);
+
+  static const char *get_name(Handle *);
+
+  ZFS() : g_zfs(NULL) {}
+  ~ZFS();
+  int init();
+  Handle *open(const char *, int);
+  void close(Handle *);
+  Handle *path_to_zhandle(const char *, int);
+  int create(const char *, int);
+  int snapshot(const char *, bool);
+  int rollback(Handle *, Handle *, bool);
+  int destroy_snaps(Handle *, const char *, bool);
+  int iter_snapshots_sorted(Handle *, iter_func, void *);
+  int mount(Handle *, const char *, int);
+  int umount(Handle *, const char *, int);
+  bool is_mounted(Handle *, char **);
+};
+
+#endif