Whamcloud - gitweb
LU-709 build: clean up libcfs/autoconf/lustre-libcfs.m4
[fs/lustre-release.git] / libcfs / include / libcfs / linux / portals_compat25.h
1 /* -*- mode: c; c-basic-offset: 8; indent-tabs-mode: nil; -*-
2  * vim:expandtab:shiftwidth=8:tabstop=8:
3  *
4  * GPL HEADER START
5  *
6  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
7  *
8  * This program is free software; you can redistribute it and/or modify
9  * it under the terms of the GNU General Public License version 2 only,
10  * as published by the Free Software Foundation.
11  *
12  * This program is distributed in the hope that it will be useful, but
13  * WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
15  * General Public License version 2 for more details (a copy is included
16  * in the LICENSE file that accompanied this code).
17  *
18  * You should have received a copy of the GNU General Public License
19  * version 2 along with this program; If not, see
20  * http://www.sun.com/software/products/lustre/docs/GPLv2.pdf
21  *
22  * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
23  * CA 95054 USA or visit www.sun.com if you need additional information or
24  * have any questions.
25  *
26  * GPL HEADER END
27  */
28 /*
29  * Copyright (c) 2008, 2010, Oracle and/or its affiliates. All rights reserved.
30  * Use is subject to license terms.
31  */
32 /*
33  * This file is part of Lustre, http://www.lustre.org/
34  * Lustre is a trademark of Sun Microsystems, Inc.
35  */
36
37 #ifndef __LIBCFS_LINUX_PORTALS_COMPAT_H__
38 #define __LIBCFS_LINUX_PORTALS_COMPAT_H__
39
40 // XXX BUG 1511 -- remove this stanza and all callers when bug 1511 is resolved
41 #if defined(SPINLOCK_DEBUG) && SPINLOCK_DEBUG
42 #  define SIGNAL_MASK_ASSERT() \
43    LASSERT(current->sighand->siglock.magic == SPINLOCK_MAGIC)
44 #else
45 # define SIGNAL_MASK_ASSERT()
46 #endif
47 // XXX BUG 1511 -- remove this stanza and all callers when bug 1511 is resolved
48
49 #define SIGNAL_MASK_LOCK(task, flags)                                  \
50   spin_lock_irqsave(&task->sighand->siglock, flags)
51 #define SIGNAL_MASK_UNLOCK(task, flags)                                \
52   spin_unlock_irqrestore(&task->sighand->siglock, flags)
53 #define USERMODEHELPER(path, argv, envp)                               \
54   call_usermodehelper(path, argv, envp, 1)
55 #define RECALC_SIGPENDING         recalc_sigpending()
56 #define CLEAR_SIGPENDING          clear_tsk_thread_flag(current,       \
57                                                         TIF_SIGPENDING)
58 # define CURRENT_SECONDS           get_seconds()
59 # define smp_num_cpus              num_online_cpus()
60
61 #define cfs_wait_event_interruptible(wq, condition, ret)               \
62         ret = wait_event_interruptible(wq, condition)
63 #define cfs_wait_event_interruptible_exclusive(wq, condition, ret)     \
64         ret = wait_event_interruptible_exclusive(wq, condition)
65
66 #define UML_PID(tsk) ((tsk)->pid)
67
68 #define THREAD_NAME(comm, len, fmt, a...)                              \
69         snprintf(comm, len, fmt, ## a)
70
71 /* 2.6 alloc_page users can use page->lru */
72 #define PAGE_LIST_ENTRY lru
73 #define PAGE_LIST(page) ((page)->lru)
74
75 #ifndef __user
76 #define __user
77 #endif
78
79 #ifndef __fls
80 #define __cfs_fls fls
81 #else
82 #define __cfs_fls __fls
83 #endif
84
85 #ifdef HAVE_5ARGS_SYSCTL_PROC_HANDLER
86 #define ll_proc_dointvec(table, write, filp, buffer, lenp, ppos)        \
87         proc_dointvec(table, write, buffer, lenp, ppos);
88
89 #define ll_proc_dolongvec(table, write, filp, buffer, lenp, ppos)        \
90         proc_doulongvec_minmax(table, write, buffer, lenp, ppos);
91 #define ll_proc_dostring(table, write, filp, buffer, lenp, ppos)        \
92         proc_dostring(table, write, buffer, lenp, ppos);
93 #define LL_PROC_PROTO(name)                                             \
94         name(cfs_sysctl_table_t *table, int write,                      \
95              void __user *buffer, size_t *lenp, loff_t *ppos)
96 #else
97 #define ll_proc_dointvec(table, write, filp, buffer, lenp, ppos)        \
98         proc_dointvec(table, write, filp, buffer, lenp, ppos);
99
100 #define ll_proc_dolongvec(table, write, filp, buffer, lenp, ppos)        \
101         proc_doulongvec_minmax(table, write, filp, buffer, lenp, ppos);
102 #define ll_proc_dostring(table, write, filp, buffer, lenp, ppos)        \
103         proc_dostring(table, write, filp, buffer, lenp, ppos);
104 #define LL_PROC_PROTO(name)                                             \
105         name(cfs_sysctl_table_t *table, int write, struct file *filp,   \
106              void __user *buffer, size_t *lenp, loff_t *ppos)
107 #endif
108 #define DECLARE_LL_PROC_PPOS_DECL
109
110 /* helper for sysctl handlers */
111 int proc_call_handler(void *data, int write,
112                       loff_t *ppos, void *buffer, size_t *lenp,
113                       int (*handler)(void *data, int write,
114                                      loff_t pos, void *buffer, int len));
115
116 #endif /* _PORTALS_COMPAT_H */