Linux Kernel  3.7.1
 All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Groups Pages
Functions | Variables
xfs_export.c File Reference
#include "xfs.h"
#include "xfs_types.h"
#include "xfs_log.h"
#include "xfs_trans.h"
#include "xfs_sb.h"
#include "xfs_ag.h"
#include "xfs_dir2.h"
#include "xfs_mount.h"
#include "xfs_export.h"
#include "xfs_vnodeops.h"
#include "xfs_bmap_btree.h"
#include "xfs_inode.h"
#include "xfs_inode_item.h"
#include "xfs_trace.h"

Go to the source code of this file.

Functions

STATIC int xfs_fs_encode_fh (struct inode *inode, __u32 *fh, int *max_len, struct inode *parent)
 
STATIC struct inodexfs_nfs_get_inode (struct super_block *sb, u64 ino, u32 generation)
 
STATIC struct dentryxfs_fs_fh_to_dentry (struct super_block *sb, struct fid *fid, int fh_len, int fileid_type)
 
STATIC struct dentryxfs_fs_fh_to_parent (struct super_block *sb, struct fid *fid, int fh_len, int fileid_type)
 
STATIC struct dentryxfs_fs_get_parent (struct dentry *child)
 
STATIC int xfs_fs_nfs_commit_metadata (struct inode *inode)
 

Variables

struct export_operations xfs_export_operations
 

Function Documentation

STATIC int xfs_fs_encode_fh ( struct inode inode,
__u32 fh,
int max_len,
struct inode parent 
)

Definition at line 54 of file xfs_export.c.

STATIC struct dentry* xfs_fs_fh_to_dentry ( struct super_block sb,
struct fid fid,
int  fh_len,
int  fileid_type 
)
read

Definition at line 162 of file xfs_export.c.

STATIC struct dentry* xfs_fs_fh_to_parent ( struct super_block sb,
struct fid fid,
int  fh_len,
int  fileid_type 
)
read

Definition at line 186 of file xfs_export.c.

STATIC struct dentry* xfs_fs_get_parent ( struct dentry child)
read

Definition at line 210 of file xfs_export.c.

STATIC int xfs_fs_nfs_commit_metadata ( struct inode inode)

Definition at line 224 of file xfs_export.c.

STATIC struct inode* xfs_nfs_get_inode ( struct super_block sb,
u64  ino,
u32  generation 
)
read

Definition at line 119 of file xfs_export.c.

Variable Documentation

struct export_operations xfs_export_operations
Initial value:
= {
.encode_fh = xfs_fs_encode_fh,
.fh_to_dentry = xfs_fs_fh_to_dentry,
.fh_to_parent = xfs_fs_fh_to_parent,
.get_parent = xfs_fs_get_parent,
.commit_metadata = xfs_fs_nfs_commit_metadata,
}

Definition at line 241 of file xfs_export.c.