proc.c (976e3645923bdd2fe7893aae33fd7a21098bfb28) | proc.c (f2aedb713c284429987dc66c7aaf38decfc8da2a) |
---|---|
1// SPDX-License-Identifier: GPL-2.0 2/* 3 * linux/fs/nfs/proc.c 4 * 5 * Copyright (C) 1992, 1993, 1994 Rick Sladkey 6 * 7 * OS-independent nfs remote procedure call functions 8 * --- 696 unchanged lines hidden (view full) --- 705const struct nfs_rpc_ops nfs_v2_clientops = { 706 .version = 2, /* protocol version */ 707 .dentry_ops = &nfs_dentry_operations, 708 .dir_inode_ops = &nfs_dir_inode_operations, 709 .file_inode_ops = &nfs_file_inode_operations, 710 .file_ops = &nfs_file_operations, 711 .getroot = nfs_proc_get_root, 712 .submount = nfs_submount, | 1// SPDX-License-Identifier: GPL-2.0 2/* 3 * linux/fs/nfs/proc.c 4 * 5 * Copyright (C) 1992, 1993, 1994 Rick Sladkey 6 * 7 * OS-independent nfs remote procedure call functions 8 * --- 696 unchanged lines hidden (view full) --- 705const struct nfs_rpc_ops nfs_v2_clientops = { 706 .version = 2, /* protocol version */ 707 .dentry_ops = &nfs_dentry_operations, 708 .dir_inode_ops = &nfs_dir_inode_operations, 709 .file_inode_ops = &nfs_file_inode_operations, 710 .file_ops = &nfs_file_operations, 711 .getroot = nfs_proc_get_root, 712 .submount = nfs_submount, |
713 .try_mount = nfs_try_mount, | 713 .try_get_tree = nfs_try_get_tree, |
714 .getattr = nfs_proc_getattr, 715 .setattr = nfs_proc_setattr, 716 .lookup = nfs_proc_lookup, 717 .access = NULL, /* access */ 718 .readlink = nfs_proc_readlink, 719 .create = nfs_proc_create, 720 .remove = nfs_proc_remove, 721 .unlink_setup = nfs_proc_unlink_setup, --- 32 unchanged lines hidden --- | 714 .getattr = nfs_proc_getattr, 715 .setattr = nfs_proc_setattr, 716 .lookup = nfs_proc_lookup, 717 .access = NULL, /* access */ 718 .readlink = nfs_proc_readlink, 719 .create = nfs_proc_create, 720 .remove = nfs_proc_remove, 721 .unlink_setup = nfs_proc_unlink_setup, --- 32 unchanged lines hidden --- |