staging/lustre: Remove unused statfs_pack()
authorOleg Drokin <green@linuxhacker.ru>
Tue, 29 Sep 2015 03:43:50 +0000 (23:43 -0400)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Tue, 29 Sep 2015 13:22:27 +0000 (15:22 +0200)
It's only used on the server.

Reported-by: Arnd Bergmann <arnd@arndb.de>
Signed-off-by: Oleg Drokin <green@linuxhacker.ru>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/lustre/lustre/include/lustre_lib.h
drivers/staging/lustre/lustre/obdclass/statfs_pack.c

index b380359cadab156a41084447bef0ce0f9d9bc3d0..35175fd3da88fcb5f3442bd62e398c51373aa37b 100644 (file)
@@ -100,7 +100,6 @@ struct obd_client_handle {
 #define OBD_CLIENT_HANDLE_MAGIC 0xd15ea5ed
 
 /* statfs_pack.c */
-void statfs_pack(struct obd_statfs *osfs, struct kstatfs *sfs);
 void statfs_unpack(struct kstatfs *sfs, struct obd_statfs *osfs);
 
 /*
index cc785ab3f29a981ed1722d4765f30a03a14efe85..fb4e3ae845e0eeb5794ae0eec6e658aff0919693 100644 (file)
 #include "../include/obd_support.h"
 #include "../include/obd_class.h"
 
-void statfs_pack(struct obd_statfs *osfs, struct kstatfs *sfs)
-{
-       memset(osfs, 0, sizeof(*osfs));
-       osfs->os_type = sfs->f_type;
-       osfs->os_blocks = sfs->f_blocks;
-       osfs->os_bfree = sfs->f_bfree;
-       osfs->os_bavail = sfs->f_bavail;
-       osfs->os_files = sfs->f_files;
-       osfs->os_ffree = sfs->f_ffree;
-       osfs->os_bsize = sfs->f_bsize;
-       osfs->os_namelen = sfs->f_namelen;
-}
-EXPORT_SYMBOL(statfs_pack);
-
 void statfs_unpack(struct kstatfs *sfs, struct obd_statfs *osfs)
 {
        memset(sfs, 0, sizeof(*sfs));