Skip to content

Commit

Permalink
remove unused readdir function
Browse files Browse the repository at this point in the history
  • Loading branch information
trapexit committed Jul 15, 2015
1 parent e4be3aa commit e5359eb
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 43 deletions.
26 changes: 0 additions & 26 deletions src/readdir.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,6 @@ using std::string;
using std::vector;
using std::set;
using std::pair;
using mergerfs::readdir::FileData;

#define NO_OFFSET 0

Expand Down Expand Up @@ -86,35 +85,10 @@ _readdir(const vector<string> &srcmounts,
return 0;
}

static
int
stat_vector_filler(void *buf,
const char *name,
const struct stat *stbuf,
off_t off)
{
vector<FileData> *stats = (vector<FileData>*)buf;

stats->push_back(FileData(name,*stbuf));

return 0;
}

namespace mergerfs
{
namespace readdir
{
int
readdir(const vector<string> &srcmounts,
const string &dirname,
vector<FileData> &stats)
{
return _readdir(srcmounts,
dirname,
&stats,
stat_vector_filler);
}

int
readdir(const char *fusepath,
void *buf,
Expand Down
17 changes: 0 additions & 17 deletions src/readdir.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -38,29 +38,12 @@ namespace mergerfs
{
namespace readdir
{
struct FileData
{
FileData(const std::string &filename_,
const struct stat &stats_)
: filename(filename_),
stats(stats_)
{}

std::string filename;
struct stat stats;
};

int
readdir(const char *fusepath,
void *buf,
fuse_fill_dir_t filler,
off_t offset,
struct fuse_file_info *fi);

int
readdir(const std::vector<std::string> &srcmounts,
const std::string &dirname,
std::vector<FileData> &stats);
}
}

Expand Down

0 comments on commit e5359eb

Please sign in to comment.