Home
last modified time | relevance | path

Searched refs:ffl (Results 1 – 2 of 2) sorted by relevance

/linux-4.4.14/fs/nfs/flexfilelayout/
Dflexfilelayout.c32 struct nfs4_flexfile_layout *ffl; in ff_layout_alloc_layout_hdr() local
34 ffl = kzalloc(sizeof(*ffl), gfp_flags); in ff_layout_alloc_layout_hdr()
35 if (ffl) { in ff_layout_alloc_layout_hdr()
36 INIT_LIST_HEAD(&ffl->error_list); in ff_layout_alloc_layout_hdr()
37 INIT_LIST_HEAD(&ffl->mirrors); in ff_layout_alloc_layout_hdr()
38 return &ffl->generic_hdr; in ff_layout_alloc_layout_hdr()
548 struct nfs4_flexfile_layout *ffl; in ff_layout_free_lseg() local
551 ffl = FF_LAYOUT_FROM_HDR(lseg->pls_layout); in ff_layout_free_lseg()
552 inode = ffl->generic_hdr.plh_inode; in ff_layout_free_lseg()
555 ffl->commit_info.nbuckets = 0; in ff_layout_free_lseg()
[all …]
/linux-4.4.14/fs/fuse/
Dfile.c2071 static int convert_fuse_file_lock(const struct fuse_file_lock *ffl, in convert_fuse_file_lock() argument
2074 switch (ffl->type) { in convert_fuse_file_lock()
2080 if (ffl->start > OFFSET_MAX || ffl->end > OFFSET_MAX || in convert_fuse_file_lock()
2081 ffl->end < ffl->start) in convert_fuse_file_lock()
2084 fl->fl_start = ffl->start; in convert_fuse_file_lock()
2085 fl->fl_end = ffl->end; in convert_fuse_file_lock()
2086 fl->fl_pid = ffl->pid; in convert_fuse_file_lock()
2092 fl->fl_type = ffl->type; in convert_fuse_file_lock()