Whamcloud - gitweb
LU-2158 lvfs: Remove ll_fid2str from lvfs.h
authorPrakash Surya <surya1@llnl.gov>
Wed, 19 Oct 2011 17:47:41 +0000 (10:47 -0700)
committerOleg Drokin <green@whamcloud.com>
Sat, 26 Jan 2013 03:27:11 +0000 (22:27 -0500)
The ll_fid2str function was removed because it is not used anywhere.

Change-Id: I7e16b3d5e2fa10af0d5763909a42871a8c86a3ff
Signed-off-by: Prakash Surya <surya1@llnl.gov>
Reviewed-on: http://review.whamcloud.com/4860
Reviewed-by: Andreas Dilger <andreas.dilger@intel.com>
Tested-by: Hudson
Tested-by: Maloo <whamcloud.maloo@gmail.com>
Reviewed-by: James Simmons <uja.ornl@gmail.com>
lustre/include/lvfs.h

index 9f55e22..8fff863 100644 (file)
@@ -54,7 +54,6 @@
 
 #include <libcfs/lucache.h>
 
-
 #ifdef LIBLUSTRE
 #include <lvfs_user_fs.h>
 #endif
@@ -66,11 +65,4 @@ void push_ctxt(struct lvfs_run_ctxt *save, struct lvfs_run_ctxt *new_ctx,
                struct lvfs_ucred *cred);
 void pop_ctxt(struct lvfs_run_ctxt *saved, struct lvfs_run_ctxt *new_ctx,
               struct lvfs_ucred *cred);
-
-
-static inline int ll_fid2str(char *str, __u64 id, __u32 generation)
-{
-        return sprintf(str, "%llx:%08x", (unsigned long long)id, generation);
-}
-
 #endif