Whamcloud - gitweb
Install and distribute lconf and lmc.
[fs/lustre-release.git] / lustre / lib / ll_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 Cluster File Systems, Inc. <adilger@clusterfs.com>
5  *
6  *   This file is part of Lustre, http://www.lustre.org.
7  *
8  *   Lustre is free software; you can redistribute it and/or
9  *   modify it under the terms of version 2 of the GNU General Public
10  *   License as published by the Free Software Foundation.
11  *
12  *   Lustre is distributed in the hope that it will be useful,
13  *   but WITHOUT ANY WARRANTY; without even the implied warranty of
14  *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15  *   GNU General Public License for more details.
16  *
17  *   You should have received a copy of the GNU General Public License
18  *   along with Lustre; if not, write to the Free Software
19  *   Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
20  *
21  * (Un)packing of OST/MDS requests
22  *
23  */
24
25 #define DEBUG_SUBSYSTEM S_LLITE
26
27 #include <linux/lustre_net.h>
28 #include <linux/obd_support.h>
29
30 void obd_statfs_pack(struct obd_statfs *osfs, struct statfs *sfs)
31 {
32         if (osfs == NULL || sfs == NULL)
33                 LBUG();
34
35         osfs->os_type = HTON__u64(sfs->f_type);
36         osfs->os_blocks = HTON__u64(sfs->f_blocks);
37         osfs->os_bfree = HTON__u64(sfs->f_bfree);
38         osfs->os_bavail = HTON__u64(sfs->f_bavail);
39         osfs->os_files = HTON__u64(sfs->f_files);
40         osfs->os_ffree = HTON__u64(sfs->f_ffree);
41         osfs->os_bsize = HTON__u32(sfs->f_bsize);
42         osfs->os_namelen = HTON__u32(sfs->f_namelen);
43 }
44
45 void obd_statfs_unpack(struct obd_statfs *osfs, struct statfs *sfs)
46 {
47         if (osfs == NULL || sfs == NULL)
48                 LBUG();
49
50         sfs->f_type = NTOH__u64(osfs->os_type);
51         sfs->f_blocks = NTOH__u64(osfs->os_blocks);
52         sfs->f_bfree = NTOH__u64(osfs->os_bfree);
53         sfs->f_bavail = NTOH__u64(osfs->os_bavail);
54         sfs->f_files = NTOH__u64(osfs->os_files);
55         sfs->f_ffree = NTOH__u64(osfs->os_ffree);
56         sfs->f_bsize = NTOH__u32(osfs->os_bsize);
57         sfs->f_namelen = NTOH__u32(osfs->os_namelen);
58 }
59