• Home
  • Raw
  • Download

Lines Matching refs:head

513 static void nfs_cancel_commit_list(struct list_head *head)  in nfs_cancel_commit_list()  argument
517 while(!list_empty(head)) { in nfs_cancel_commit_list()
518 req = nfs_list_entry(head->next); in nfs_cancel_commit_list()
865 static int nfs_flush_multi(struct inode *inode, struct list_head *head, unsigned int npages, size_t… in nfs_flush_multi() argument
867 struct nfs_page *req = nfs_list_entry(head->next); in nfs_flush_multi()
932 static int nfs_flush_one(struct inode *inode, struct list_head *head, unsigned int npages, size_t c… in nfs_flush_one() argument
943 while (!list_empty(head)) { in nfs_flush_one()
944 req = nfs_list_entry(head->next); in nfs_flush_one()
955 while (!list_empty(head)) { in nfs_flush_one()
956 req = nfs_list_entry(head->next); in nfs_flush_one()
1190 static int nfs_commit_rpcsetup(struct list_head *head, in nfs_commit_rpcsetup() argument
1194 struct nfs_page *first = nfs_list_entry(head->next); in nfs_commit_rpcsetup()
1218 list_splice_init(head, &data->pages); in nfs_commit_rpcsetup()
1249 nfs_commit_list(struct inode *inode, struct list_head *head, int how) in nfs_commit_list() argument
1260 return nfs_commit_rpcsetup(head, data, how); in nfs_commit_list()
1262 while (!list_empty(head)) { in nfs_commit_list()
1263 req = nfs_list_entry(head->next); in nfs_commit_list()
1336 LIST_HEAD(head); in nfs_commit_inode()
1340 res = nfs_scan_commit(inode, &head, 0, 0); in nfs_commit_inode()
1343 int error = nfs_commit_list(inode, &head, how); in nfs_commit_inode()
1350 static inline int nfs_commit_list(struct inode *inode, struct list_head *head, int how) in nfs_commit_list() argument
1361 LIST_HEAD(head); in nfs_sync_mapping_wait()
1387 pages = nfs_scan_commit(inode, &head, idx_start, npages); in nfs_sync_mapping_wait()
1392 nfs_cancel_commit_list(&head); in nfs_sync_mapping_wait()
1397 pages += nfs_scan_commit(inode, &head, 0, 0); in nfs_sync_mapping_wait()
1399 ret = nfs_commit_list(inode, &head, how); in nfs_sync_mapping_wait()