blob: 366e41459695acbedf4b8ce6b2ee18ed7d413049 [file] [log] [blame]
Bryan Schumaker129d1972012-07-16 16:39:13 -04001/*
2 * Copyright (c) 2012 Bryan Schumaker <bjschuma@netapp.com>
3 */
4#include <linux/init.h>
5#include <linux/nfs_idmap.h>
6
7int __init init_nfs_v4(void)
8{
9 int err;
10
11 err = nfs_idmap_init();
12 if (err)
13 goto out;
14
15 return 0;
16out:
17 return err;
18}
19
20void __exit exit_nfs_v4(void)
21{
22 nfs_idmap_quit();
23}