These changes are the raw update to linux-4.4.6-rt14. Kernel sources
[kvmfornfv.git] / kernel / drivers / staging / lustre / lustre / obdclass / statfs_pack.c
index cc785ab..fb4e3ae 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));