callback.h (e6f684f6443dd37384c63d2f27571350e0b5c8aa) callback.h (5704fdeb41c9fb282ae576516f221ea0b8f64b2b)
1/*
2 * linux/fs/nfs/callback.h
3 *
4 * Copyright (C) 2004 Trond Myklebust
5 *
6 * NFSv4 callback definitions
7 */
8#ifndef __LINUX_FS_NFS_CALLBACK_H

--- 17 unchanged lines hidden (view full) ---

26struct cb_compound_hdr_arg {
27 int taglen;
28 const char *tag;
29 unsigned int callback_ident;
30 unsigned nops;
31};
32
33struct cb_compound_hdr_res {
1/*
2 * linux/fs/nfs/callback.h
3 *
4 * Copyright (C) 2004 Trond Myklebust
5 *
6 * NFSv4 callback definitions
7 */
8#ifndef __LINUX_FS_NFS_CALLBACK_H

--- 17 unchanged lines hidden (view full) ---

26struct cb_compound_hdr_arg {
27 int taglen;
28 const char *tag;
29 unsigned int callback_ident;
30 unsigned nops;
31};
32
33struct cb_compound_hdr_res {
34 uint32_t *status;
34 __be32 *status;
35 int taglen;
36 const char *tag;
35 int taglen;
36 const char *tag;
37 uint32_t *nops;
37 __be32 *nops;
38};
39
40struct cb_getattrargs {
41 struct sockaddr_in *addr;
42 struct nfs_fh fh;
43 uint32_t bitmap[2];
44};
45

--- 31 unchanged lines hidden ---
38};
39
40struct cb_getattrargs {
41 struct sockaddr_in *addr;
42 struct nfs_fh fh;
43 uint32_t bitmap[2];
44};
45

--- 31 unchanged lines hidden ---