nfs-ganesha 1.4
|
00001 /* 00002 * 00003 * 00004 * Copyright CEA/DAM/DIF (2008) 00005 * contributeur : Philippe DENIEL philippe.deniel@cea.fr 00006 * Thomas LEIBOVICI thomas.leibovici@cea.fr 00007 * 00008 * 00009 * This program is free software; you can redistribute it and/or 00010 * modify it under the terms of the GNU Lesser General Public 00011 * License as published by the Free Software Foundation; either 00012 * version 3 of the License, or (at your option) any later version. 00013 * 00014 * This program is distributed in the hope that it will be useful, 00015 * but WITHOUT ANY WARRANTY; without even the implied warranty of 00016 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 00017 * Lesser General Public License for more details. 00018 * 00019 * You should have received a copy of the GNU Lesser General Public 00020 * License along with this library; if not, write to the Free Software 00021 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA 00022 * 00023 * --------------------------------------- 00024 */ 00025 00030 #ifndef _MFSL_TYPES_H 00031 #define _MFSL_TYPES_H 00032 00033 #ifndef TRUE 00034 #define TRUE 1 00035 #endif 00036 #ifndef FALSE 00037 #define FALSE 0 00038 #endif 00039 00040 /* 00041 * labels in the config file 00042 */ 00043 00044 #define CONF_LABEL_MFSL "MFSL" 00045 00046 /* other includes */ 00047 #include <sys/types.h> 00048 #include <sys/param.h> 00049 #include <dirent.h> /* for MAXNAMLEN */ 00050 #include "config_parsing.h" 00051 #include "fsal.h" 00052 #include "err_fsal.h" 00053 #include "err_mfsl.h" 00054 00055 #ifdef _USE_MFSL_NULL 00056 #include "MFSL/MFSL_NULL/mfsl_types.h" 00057 #endif 00058 00059 #ifdef _USE_MFSL_TIMER 00060 #include "MFSL/MFSL_TIMER/mfsl_types.h" 00061 #endif 00062 00063 #ifdef _USE_MFSL_ASYNC 00064 #include "MFSL/MFSL_ASYNC/mfsl_types.h" 00065 #endif 00066 00067 #ifdef _USE_MFSL_AIO 00068 #include "MFSL/MFSL_AIO/mfsl_types.h" 00069 #endif 00070 00071 #ifdef _USE_MFSL_PROXY_RPCSECGSS 00072 #include "MFSL/MFSL_PROXY_RPCSECGSS/mfsl_types.h" 00073 #endif 00074 00075 #ifdef _USE_MFSL_PNFS_FILE 00076 #include "MFSL/MFSL_PNFS_FILE/mfsl_types.h" 00077 #endif 00078 00079 #endif /* _MFSL_TYPES_H */