You've already forked linux-apfs
mirror of
https://github.com/linux-apfs/linux-apfs.git
synced 2026-05-01 15:00:59 -07:00
24 lines
296 B
C
24 lines
296 B
C
|
|
/*
|
||
|
|
* 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();
|
||
|
|
}
|