Whamcloud - gitweb
1d2f17e5c69f48a8a7dd76493ca24c0710578df9
[fs/lustre-release.git] / lustre / include / linux / lustre_net.h
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  *
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  */
22
23 #ifndef _LINUX_LUSTRE_NET_H
24 #define _LINUX_LUSTRE_NET_H
25
26 #ifndef _LUSTRE_NET_H
27 #error Do not #include this file directly. #include <lustre_net.h> instead
28 #endif
29
30 #ifdef __KERNEL__
31 #include <linux/version.h>
32 #if (LINUX_VERSION_CODE < KERNEL_VERSION(2,5,0))
33 #include <linux/tqueue.h>
34 #else
35 #include <linux/workqueue.h>
36 #endif
37 #endif
38
39 /* XXX Liang: should be moved to other header instead of here */
40 #if LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,4)
41 #ifndef WITH_GROUP_INFO
42 #define WITH_GROUP_INFO
43 #endif
44 #endif
45
46 #endif