aboutsummaryrefslogtreecommitdiff
path: root/fs/nfs/nfs4super.c
blob: 366e41459695acbedf4b8ce6b2ee18ed7d413049 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
/*
 * Copyright (c) 2012 Bryan Schumaker <bjschuma@netapp.com>
 */
#include <linux/init.h>
#include <linux/nfs_idmap.h>

int __init init_nfs_v4(void)
{
	int err;

	err = nfs_idmap_init();
	if (err)
		goto out;

	return 0;
out:
	return err;
}

void __exit exit_nfs_v4(void)
{
	nfs_idmap_quit();
}