Skip to content

Commit

Permalink
FIXUP: fs: metadata_log: renamed link() to link_file()
Browse files Browse the repository at this point in the history
  • Loading branch information
varqox committed Feb 26, 2020
1 parent c3d440a commit 5ad912e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/fs/metadata_log.hh
Original file line number Diff line number Diff line change
Expand Up @@ -255,10 +255,10 @@ public:
future<> close_file(inode_t inode) { return make_ready_future(); }

// Creates name (@p path) for a file (@p inode)
future<> link(inode_t inode, std::string path);
future<> link_file(inode_t inode, std::string path);

// Creates name (@p destination) for a file (not directory) @p source
future<> link(std::string source, std::string destination);
future<> link_file(std::string source, std::string destination);

future<> unlink_file(std::string path);

Expand Down

0 comments on commit 5ad912e

Please sign in to comment.