-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
yaml --- r: 320230 b: refs/heads/master c: 129d197 h: refs/heads/master v: v3
- Loading branch information
Bryan Schumaker
authored and
Trond Myklebust
committed
Jul 17, 2012
1 parent
47e2af8
commit 83f84f1
Showing
5 changed files
with
66 additions
and
32 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
--- | ||
refs/heads/master: 73a79706d7f197a428a43fbf335bbe75cdbc221f | ||
refs/heads/master: 129d1977ed39cbb4f091a518e4a12498c04f45ba |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,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(); | ||
} |