Whamcloud - gitweb
Obsolete CURRENT_SECONDS and use cfs_time_current_sec() instead.
[fs/lustre-release.git] / lustre / include / darwin / lprocfs_status.h
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.
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  *   Top level header file for LProc SNMP
22  *   Author: Hariharan Thantry thantry@users.sourceforge.net
23  */
24 #ifndef _DARWIN_LPROCFS_SNMP_H
25 #define _DARWIN_LPROCFS_SNMP_H
26
27 #ifndef _LPROCFS_SNMP_H
28 #error Do not #include this file directly. #include <lprocfs_status.h> instead
29 #endif
30
31 #ifdef LPROCFS
32 #undef LPROCFS
33 #endif
34
35 #include <libcfs/libcfs.h>
36 #define kstatfs statfs
37
38 /*
39  * XXX nikita: temporary! Stubs for naked procfs calls made by Lustre
40  * code. Should be replaced with our own procfs-like API.
41  */
42
43 static inline cfs_proc_dir_entry_t *proc_symlink(const char *name,
44                                                  cfs_proc_dir_entry_t *parent,
45                                                  const char *dest)
46 {
47         return NULL;
48 }
49
50 static inline cfs_proc_dir_entry_t *create_proc_entry(const char *name,
51                                                       mode_t mode,
52                                                       cfs_proc_dir_entry_t *p)
53 {
54         return NULL;
55 }
56
57 #endif /* XNU_LPROCFS_SNMP_H */