Whamcloud - gitweb
Merge posix_stable to the head.
[fs/lustre-release.git] / lustre / include / linux / lustre_lib.h
1 /* -*- mode: c; c-basic-offset: 8; indent-tabs-mode: nil; -*-
2  * vim:expandtab:shiftwidth=8:tabstop=8:
3  *
4  *  Copyright (C) 2001 Cluster File Systems, Inc. <braam@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  * Basic Lustre library routines. 
22  *
23  */
24
25 #ifndef _LUSTRE_LIB_H
26 #define _LUSTRE_LIB_H
27
28 #include <asm/types.h>
29
30 #ifndef __KERNEL__
31 # include <string.h>
32 #endif
33
34 #include <linux/portals_lib.h>
35 #include <linux/lustre_idl.h>
36
37 #ifdef __KERNEL__
38 /* page.c */
39 inline void lustre_put_page(struct page *page);
40 struct page *lustre_get_page_read(struct inode *dir, unsigned long index);
41 struct page *lustre_get_page_write(struct inode *dir, unsigned long index);
42 int lustre_commit_page(struct page *page, unsigned from, unsigned to);
43 void set_page_clean(struct page *page);
44 void set_page_dirty(struct page *page);
45
46 /* simple.c */
47 struct obd_run_ctxt;
48 void push_ctxt(struct obd_run_ctxt *save, struct obd_run_ctxt *new);
49 void pop_ctxt(struct obd_run_ctxt *saved);
50 #ifdef CTXT_DEBUG
51 #define OBD_SET_CTXT_MAGIC(ctxt) (ctxt)->magic = OBD_RUN_CTXT_MAGIC
52 #else
53 #define OBD_SET_CTXT_MAGIC(magic) do {} while(0)
54 #endif
55 struct dentry *simple_mkdir(struct dentry *dir, char *name, int mode);
56 int lustre_fread(struct file *file, char *str, int len, loff_t *off);
57 int lustre_fwrite(struct file *file, const char *str, int len, loff_t *off);
58 int lustre_fsync(struct file *file);
59
60 static inline void l_dput(struct dentry *de)
61 {
62         if (!de || IS_ERR(de))
63                 return;
64         shrink_dcache_parent(de);
65         dput(de);
66 }
67
68 static inline void ll_sleep(int t)
69 {
70         set_current_state(TASK_INTERRUPTIBLE);
71         schedule_timeout(t * HZ);
72         set_current_state(TASK_RUNNING);
73 }
74 #endif
75
76 /* FIXME: This needs to validate pointers and cookies */
77 static inline void *lustre_handle2object(struct lustre_handle *handle)
78 {
79         if (handle) 
80                 return (void *)(unsigned long)(handle->addr);
81         return NULL; 
82 }
83
84 static inline void ldlm_object2handle(void *object, struct lustre_handle *handle)
85 {
86         handle->addr = (__u64)(unsigned long)object;
87 }
88
89 struct obd_statfs;
90 struct statfs;
91 void obd_statfs_pack(struct obd_statfs *osfs, struct statfs *sfs);
92 void obd_statfs_unpack(struct obd_statfs *osfs, struct statfs *sfs);
93
94 #include <linux/portals_lib.h>
95
96 #endif /* _LUSTRE_LIB_H */