Searched refs:to_free (Results 1 – 11 of 11) sorted by relevance
/linux-4.19.296/fs/ntfs/ |
D | lcnalloc.c | 852 s64 delta, to_free, total_freed, real_freed; in __ntfs_cluster_free() local 900 to_free = rl->length - delta; in __ntfs_cluster_free() 901 if (count >= 0 && to_free > count) in __ntfs_cluster_free() 902 to_free = count; in __ntfs_cluster_free() 907 to_free, likely(!is_rollback) ? 0 : 1); in __ntfs_cluster_free() 915 real_freed = to_free; in __ntfs_cluster_free() 920 count -= to_free; in __ntfs_cluster_free() 923 total_freed = to_free; in __ntfs_cluster_free() 957 to_free = rl->length; in __ntfs_cluster_free() 958 if (count >= 0 && to_free > count) in __ntfs_cluster_free() [all …]
|
/linux-4.19.296/include/net/ |
D | sch_generic.h | 60 struct sk_buff **to_free); 220 struct sk_buff **to_free); 721 struct sk_buff **to_free) in qdisc_enqueue() argument 724 return sch->enqueue(skb, sch, to_free); in qdisc_enqueue() 905 static inline void __qdisc_drop(struct sk_buff *skb, struct sk_buff **to_free) in __qdisc_drop() argument 907 skb->next = *to_free; in __qdisc_drop() 908 *to_free = skb; in __qdisc_drop() 912 struct sk_buff **to_free) in __qdisc_drop_all() argument 915 skb->prev->next = *to_free; in __qdisc_drop_all() 917 skb->next = *to_free; in __qdisc_drop_all() [all …]
|
/linux-4.19.296/fs/notify/ |
D | mark.c | 689 LIST_HEAD(to_free); in fsnotify_clear_marks_by_group() 690 struct list_head *head = &to_free; in fsnotify_clear_marks_by_group() 709 list_move(&mark->g_list, &to_free); in fsnotify_clear_marks_by_group()
|
/linux-4.19.296/fs/ufs/ |
D | inode.c | 870 struct to_free { struct 876 static inline void free_data(struct to_free *ctx, u64 from, unsigned count) in free_data() argument 895 struct to_free ctx = {.inode = inode}; in ufs_trunc_direct() 994 struct to_free ctx = {.inode = inode}; in free_full_branch() 1028 struct to_free ctx = {.inode = inode}; in free_branch_tail()
|
/linux-4.19.296/fs/ext4/ |
D | inode.c | 1625 static void ext4_da_release_space(struct inode *inode, int to_free) in ext4_da_release_space() argument 1630 if (!to_free) in ext4_da_release_space() 1635 trace_ext4_da_release_space(inode, to_free); in ext4_da_release_space() 1636 if (unlikely(to_free > ei->i_reserved_data_blocks)) { in ext4_da_release_space() 1645 "data blocks", inode->i_ino, to_free, in ext4_da_release_space() 1648 to_free = ei->i_reserved_data_blocks; in ext4_da_release_space() 1650 ei->i_reserved_data_blocks -= to_free; in ext4_da_release_space() 1653 percpu_counter_sub(&sbi->s_dirtyclusters_counter, to_free); in ext4_da_release_space() 1657 dquot_release_reservation_block(inode, EXT4_C2B(sbi, to_free)); in ext4_da_release_space()
|
D | resize.c | 34 void ext4_kvfree_array_rcu(void *to_free) in ext4_kvfree_array_rcu() argument 39 ptr->ptr = to_free; in ext4_kvfree_array_rcu() 44 kvfree(to_free); in ext4_kvfree_array_rcu()
|
D | super.c | 5274 char *to_free[EXT4_MAXQUOTAS]; in ext4_remount() local 5553 to_free[i] = get_qf_name(sb, sbi, i); in ext4_remount() 5558 kfree(to_free[i]); in ext4_remount()
|
D | ext4.h | 2622 extern void ext4_kvfree_array_rcu(void *to_free);
|
/linux-4.19.296/fs/btrfs/ |
D | free-space-cache.c | 2435 u64 to_free = min(bytes, info->bytes); in btrfs_remove_free_space() local 2437 info->bytes -= to_free; in btrfs_remove_free_space() 2438 info->offset += to_free; in btrfs_remove_free_space() 2446 offset += to_free; in btrfs_remove_free_space() 2447 bytes -= to_free; in btrfs_remove_free_space()
|
/linux-4.19.296/fs/nfsd/ |
D | xdr4.h | 624 struct svcxdr_tmpbuf *to_free; member
|
D | nfs4xdr.c | 227 tb->next = argp->to_free; in svcxdr_tmpalloc() 228 argp->to_free = tb; in svcxdr_tmpalloc() 4518 while (args->to_free) { in nfsd4_release_compoundargs() 4519 struct svcxdr_tmpbuf *tb = args->to_free; in nfsd4_release_compoundargs() 4520 args->to_free = tb->next; in nfsd4_release_compoundargs() 4542 args->to_free = NULL; in nfs4svc_decode_compoundargs()
|