nfs-ganesha 1.4

rquota_setactivequota.c

Go to the documentation of this file.
00001 /*
00002  * Copyright CEA/DAM/DIF  2010
00003  *  Author: Philippe Deniel (philippe.deniel@cea.fr)
00004  *
00005  * --------------------------
00006  *
00007  * This program is free software; you can redistribute it and/or
00008  * modify it under the terms of the GNU Lesser General Public
00009  * License as published by the Free Software Foundation; either
00010  * version 3 of the License, or (at your option) any later version.
00011  * 
00012  * This program is distributed in the hope that it will be useful,
00013  * but WITHOUT ANY WARRANTY; without even the implied warranty of
00014  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
00015  * Lesser General Public License for more details.
00016  * 
00017  * You should have received a copy of the GNU Lesser General Public
00018  * License along with this library; if not, write to the Free Software
00019  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
00020  * 
00021  *
00022  */
00023 
00024 #ifdef HAVE_CONFIG_H
00025 #include "config.h"
00026 #endif
00027 
00028 #ifdef _SOLARIS
00029 #include "solaris_port.h"
00030 #endif
00031 
00032 #include <stdio.h>
00033 #include <string.h>
00034 #include <pthread.h>
00035 #include <fcntl.h>
00036 #include <sys/file.h>           /* for having FNDELAY */
00037 #include "HashData.h"
00038 #include "HashTable.h"
00039 #include "log.h"
00040 #include "ganesha_rpc.h"
00041 #include "nfs23.h"
00042 #include "nfs4.h"
00043 #include "nfs_core.h"
00044 #include "cache_inode.h"
00045 #include "nfs_exports.h"
00046 #include "nfs_creds.h"
00047 #include "nfs_tools.h"
00048 #include "mount.h"
00049 #include "rquota.h"
00050 #include "nfs_proto_functions.h"
00051 
00066 int rquota_setactivequota(nfs_arg_t *parg,
00067                           exportlist_t *pexport,
00068                           fsal_op_context_t *pcontext,
00069                           nfs_worker_data_t *pworker,
00070                           struct svc_req *preq,
00071                           nfs_res_t * pres)
00072 {
00073   LogFullDebug(COMPONENT_NFSPROTO,
00074                "REQUEST PROCESSING: Calling rquota_setactivequota");
00075   /* 0 is success */
00076   return 0;
00077 }
00078 
00087 void rquota_setactivequota_Free(nfs_res_t * pres)
00088 {
00089   return;
00090 }