Quellcodebibliothek
Statistik
Leitseite
products
/
Sources
/
formale Sprachen
/
C
/
Gnome
/
testsuite
/
svg
/
animation
/ (
Gnome Linux Desktop
Version 4.23.2
©
) Datei vom 30.5.2026 mit Größe 1 kB
Bilddatei
nfs3super.c
products/Sources/formale Sprachen/C/Linux/fs/nfs/nfs3super.c
// SPDX-License-Identifier: GPL-2.0-only /* * Copyright (c) 2012 Netapp, Inc. All rights reserved. */ #include
#include
#include "internal.h" #include "nfs3_fs.h" #include "nfs.h" struct nfs_subversion nfs_v3 = { .owner = THIS_MODULE, .nfs_fs = &nfs_fs_type, .rpc_vers = &nfs_version3, .rpc_ops = &nfs_v3_clientops, .sops = &nfs_sops, }; static int __init init_nfs_v3(void) { register_nfs_version(&nfs_v3); return 0; } static void __exit exit_nfs_v3(void) { unregister_nfs_version(&nfs_v3); } MODULE_DESCRIPTION("NFSv3 client support"); MODULE_LICENSE("GPL"); module_init(init_nfs_v3); module_exit(exit_nfs_v3);
2026-08-25