ReactOS 0.4.15-dev-7958-gcd0bb1a
recovery.h
Go to the documentation of this file.
1/* NFSv4.1 client for Windows
2 * Copyright © 2012 The Regents of the University of Michigan
3 *
4 * Olga Kornievskaia <aglo@umich.edu>
5 * Casey Bodley <cbodley@umich.edu>
6 *
7 * This library is free software; you can redistribute it and/or modify it
8 * under the terms of the GNU Lesser General Public License as published by
9 * the Free Software Foundation; either version 2.1 of the License, or (at
10 * your option) any later version.
11 *
12 * This library is distributed in the hope that it will be useful, but
13 * without any warranty; without even the implied warranty of merchantability
14 * or fitness for a particular purpose. See the GNU Lesser General Public
15 * License for more details.
16 *
17 * You should have received a copy of the GNU Lesser General Public License
18 * along with this library; if not, write to the Free Software Foundation,
19 * Inc., 51 Franklin Street, Fifth Floor, Boston, MA
20 */
21
22#ifndef RECOVERY_H
23#define RECOVERY_H
24
25#include "nfs41.h"
26
27
28/* session/client recovery uses a lock and condition variable in nfs41_client
29 * to prevent multiple threads from attempting to recover at the same time */
32
35
36
39 IN bool_t client_state_lost);
40
44
48
52 IN uint32_t revoked);
53
54struct __nfs_argop4;
57 IN struct __nfs_argop4 *argop);
58
59#endif /* RECOVERY_H */
int32_t bool_t
Definition: types.h:101
UINT32 uint32_t
Definition: types.h:75
GLbitfield flags
Definition: glext.h:7161
void nfs41_client_state_revoked(IN nfs41_session *session, IN nfs41_client *client, IN uint32_t revoked)
Definition: recovery.c:633
int nfs41_recover_client_state(IN nfs41_session *session, IN nfs41_client *client)
Definition: recovery.c:487
void nfs41_recovery_finish(IN nfs41_client *client)
Definition: recovery.c:57
bool_t nfs41_recover_stateid(IN nfs41_session *session, IN struct __nfs_argop4 *argop)
int nfs41_recover_session(IN nfs41_session *session, IN bool_t client_state_lost)
Definition: recovery.c:69
bool_t nfs41_recovery_start_or_wait(IN nfs41_client *client)
Definition: recovery.c:34
void nfs41_recover_sequence_flags(IN nfs41_session *session, IN uint32_t flags)
Definition: recovery.c:98
static FILE * client
Definition: client.c:41
#define IN
Definition: typedefs.h:39