nfs-ganesha 1.4
|
00001 /* 00002 * vim:expandtab:shiftwidth=8:tabstop=8: 00003 */ 00004 00015 #ifdef HAVE_CONFIG_H 00016 #include "config.h" 00017 #endif 00018 00019 #include "fsal.h" 00020 00033 fsal_boolean_t fsal_is_retryable(fsal_status_t status) 00034 { 00035 00036 switch (status.major) 00037 { 00038 00040 case ERR_FSAL_DELAY: 00041 return TRUE; 00042 00043 default: 00044 return FALSE; 00045 } 00046 00047 }