X-Git-Url: https://gerrit.opnfv.org/gerrit/gitweb?a=blobdiff_plain;f=src%2Fceph%2Fsrc%2Fos%2Ffs%2FFS.h;fp=src%2Fceph%2Fsrc%2Fos%2Ffs%2FFS.h;h=0000000000000000000000000000000000000000;hb=7da45d65be36d36b880cc55c5036e96c24b53f00;hp=aafa64e5350bac9d5f634690d216cf7f19fdf3e3;hpb=691462d09d0987b47e112d6ee8740375df3c51b2;p=stor4nfv.git diff --git a/src/ceph/src/os/fs/FS.h b/src/ceph/src/os/fs/FS.h deleted file mode 100644 index aafa64e..0000000 --- a/src/ceph/src/os/fs/FS.h +++ /dev/null @@ -1,51 +0,0 @@ -// -*- mode:C++; tab-width:8; c-basic-offset:2; indent-tabs-mode:t -*- -// vim: ts=8 sw=2 smarttab -/* - * Ceph - scalable distributed file system - * - * Copyright (C) 2014 Red Hat - * - * This is free software; you can redistribute it and/or - * modify it under the terms of the GNU Lesser General Public - * License version 2.1, as published by the Free Software - * Foundation. See file COPYING. - * - */ - -#ifndef CEPH_OS_FS_H -#define CEPH_OS_FS_H - -#include -#include - -#include - -#include "include/types.h" -#include "common/Mutex.h" -#include "common/Cond.h" - -class FS { -public: - virtual ~FS() { } - - static FS *create(uint64_t f_type); - static FS *create_by_fd(int fd); - - virtual const char *get_name() { - return "generic"; - } - - virtual int set_alloc_hint(int fd, uint64_t hint); - - virtual int get_handle(int fd, std::string *h); - virtual int open_handle(int mount_fd, const std::string& h, int flags); - - virtual int copy_file_range(int to_fd, uint64_t to_offset, - int from_fd, - uint64_t from_offset, uint64_t from_len); - virtual int zero(int fd, uint64_t offset, uint64_t length); - - // -- aio -- -}; - -#endif