Whamcloud - gitweb
land 0.5.20.3 b_devel onto HEAD (b_devel will remain)
[fs/lustre-release.git] / lustre / obdclass / statfs_pack.c
1 /* -*- mode: c; c-basic-offset: 8; indent-tabs-mode: nil; -*-
2  * vim:expandtab:shiftwidth=8:tabstop=8:
3  *
4  *  Copyright (C) 2002, 2003 Cluster File Systems, Inc.
5  *   Author: Andreas Dilger <adilger@clusterfs.com>
6  *
7  *   This file is part of Lustre, http://www.lustre.org.
8  *
9  *   Lustre is free software; you can redistribute it and/or
10  *   modify it under the terms of version 2 of the GNU General Public
11  *   License as published by the Free Software Foundation.
12  *
13  *   Lustre is distributed in the hope that it will be useful,
14  *   but WITHOUT ANY WARRANTY; without even the implied warranty of
15  *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16  *   GNU General Public License for more details.
17  *
18  *   You should have received a copy of the GNU General Public License
19  *   along with Lustre; if not, write to the Free Software
20  *   Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
21  *
22  * (Un)packing of OST/MDS requests
23  *
24  */
25
26 #define DEBUG_SUBSYSTEM S_CLASS
27
28 #define EXPORT_SYMTAB
29 #ifndef __KERNEL__
30 #include <liblustre.h>
31 #endif
32
33 #include <linux/version.h>
34 #if (LINUX_VERSION_CODE >= KERNEL_VERSION(2,5,0))
35 #include <asm/statfs.h>
36 #endif
37
38 #include <linux/lustre_export.h>
39 #include <linux/lustre_net.h>
40 #include <linux/obd_support.h>
41 #include <linux/obd_class.h>
42
43 void obd_statfs_pack(struct obd_statfs *tgt, struct obd_statfs *src)
44 {
45         tgt->os_type = HTON__u64(src->os_type);
46         tgt->os_blocks = HTON__u64(src->os_blocks);
47         tgt->os_bfree = HTON__u64(src->os_bfree);
48         tgt->os_bavail = HTON__u64(src->os_bavail);
49         tgt->os_files = HTON__u64(src->os_files);
50         tgt->os_ffree = HTON__u64(src->os_ffree);
51         tgt->os_bsize = HTON__u32(src->os_bsize);
52         tgt->os_namelen = HTON__u32(src->os_namelen);
53 }
54
55 void obd_statfs_unpack(struct obd_statfs *tgt, struct obd_statfs *src)
56 {
57         obd_statfs_pack(tgt, src);
58 }
59
60 void statfs_pack(struct obd_statfs *osfs, struct statfs *sfs)
61 {
62         osfs->os_type = sfs->f_type;
63         osfs->os_blocks = sfs->f_blocks;
64         osfs->os_bfree = sfs->f_bfree;
65         osfs->os_bavail = sfs->f_bavail;
66         osfs->os_files = sfs->f_files;
67         osfs->os_ffree = sfs->f_ffree;
68         osfs->os_bsize = sfs->f_bsize;
69         osfs->os_namelen = sfs->f_namelen;
70 }
71
72 void statfs_unpack(struct statfs *sfs, struct obd_statfs *osfs)
73 {
74         sfs->f_type = osfs->os_type;
75         sfs->f_blocks = osfs->os_blocks;
76         sfs->f_bfree = osfs->os_bfree;
77         sfs->f_bavail = osfs->os_bavail;
78         sfs->f_files = osfs->os_files;
79         sfs->f_ffree = osfs->os_ffree;
80         sfs->f_bsize = osfs->os_bsize;
81         sfs->f_namelen = osfs->os_namelen;
82 }
83
84 int obd_self_statfs(struct obd_device *obd, struct statfs *sfs)
85 {
86         struct lustre_handle conn;
87         struct obd_export *export, *my_export = NULL;
88         struct obd_statfs osfs = { 0 };
89         int rc;
90         ENTRY;
91
92         if (list_empty(&obd->obd_exports)) {
93                 export = my_export = class_new_export(obd);
94                 if (export == NULL)
95                         RETURN(-ENOMEM);
96         } else
97                 export = list_entry(obd->obd_exports.next, typeof(*export),
98                                     exp_obd_chain);
99         conn.addr = (unsigned long)export;
100         conn.cookie = export->exp_cookie;
101
102         rc = obd_statfs(&conn, &osfs);
103         if (!rc)
104                 statfs_unpack(sfs, &osfs);
105
106         if (my_export)
107                 class_destroy_export(my_export);
108         RETURN(rc);
109 }
110
111 EXPORT_SYMBOL(obd_statfs_pack);
112 EXPORT_SYMBOL(obd_statfs_unpack);
113 EXPORT_SYMBOL(statfs_pack);
114 EXPORT_SYMBOL(statfs_unpack);
115 EXPORT_SYMBOL(obd_self_statfs);