Home
last modified time | relevance | path

Searched refs:ifree (Results 1 – 14 of 14) sorted by relevance

/OK3568_Linux_fs/kernel/fs/xfs/scrub/
H A Dfscounters.c167 fsc->ifree = 0; in xchk_fscount_aggregate_agcounts()
181 fsc->ifree += pag->pagi_freecount; in xchk_fscount_aggregate_agcounts()
218 trace_xchk_fscounters_calc(mp, fsc->icount, fsc->ifree, fsc->fdblocks, in xchk_fscount_aggregate_agcounts()
225 fsc->ifree > fsc->icount_max) in xchk_fscount_aggregate_agcounts()
233 if (fsc->ifree > fsc->icount) { in xchk_fscount_aggregate_agcounts()
309 int64_t icount, ifree, fdblocks; in xchk_fscounters() local
314 ifree = percpu_counter_sum(&mp->m_ifree); in xchk_fscounters()
318 if (icount < 0 || ifree < 0 || fdblocks < 0) in xchk_fscounters()
333 if (ifree > icount && ifree - icount > XCHK_FSCOUNT_MIN_VARIANCE) in xchk_fscounters()
347 if (!xchk_fscount_within_range(sc, ifree, &mp->m_ifree, fsc->ifree)) in xchk_fscounters()
H A Dscrub.h158 uint64_t ifree; member
H A Dtrace.h597 TP_PROTO(struct xfs_mount *mp, uint64_t icount, uint64_t ifree,
599 TP_ARGS(mp, icount, ifree, fdblocks, delalloc),
615 __entry->ifree_calculated = ifree;
/OK3568_Linux_fs/external/rkwifibt/drivers/infineon/
H A Dbcmutils.c663 int32 ifree; /* Count of free indices. Used only in audits */ member
707 mwbmap_p->ifree = (int32)items_max; in bcm_mwbmap_init()
827 mwbmap_p->ifree--; /* decrement system wide free count */ in bcm_mwbmap_alloc()
828 MWBMAP_ASSERT(mwbmap_p->ifree >= 0); in bcm_mwbmap_alloc()
833 mwbmap_p->ifree)); in bcm_mwbmap_alloc()
841 ASSERT(mwbmap_p->ifree == 0); in bcm_mwbmap_alloc()
865 mwbmap_p->ifree--; /* update free count */ in bcm_mwbmap_force()
866 ASSERT(mwbmap_p->ifree >= 0); in bcm_mwbmap_force()
870 mwbmap_p->ifree)); in bcm_mwbmap_force()
919 mwbmap_p->ifree++; /* update free count */ in bcm_mwbmap_free()
[all …]
/OK3568_Linux_fs/kernel/drivers/net/wireless/rockchip_wlan/infineon/bcmdhd/
H A Dbcmutils.c663 int32 ifree; /* Count of free indices. Used only in audits */ member
707 mwbmap_p->ifree = (int32)items_max; in bcm_mwbmap_init()
827 mwbmap_p->ifree--; /* decrement system wide free count */ in bcm_mwbmap_alloc()
828 MWBMAP_ASSERT(mwbmap_p->ifree >= 0); in bcm_mwbmap_alloc()
833 mwbmap_p->ifree)); in bcm_mwbmap_alloc()
841 ASSERT(mwbmap_p->ifree == 0); in bcm_mwbmap_alloc()
865 mwbmap_p->ifree--; /* update free count */ in bcm_mwbmap_force()
866 ASSERT(mwbmap_p->ifree >= 0); in bcm_mwbmap_force()
870 mwbmap_p->ifree)); in bcm_mwbmap_force()
919 mwbmap_p->ifree++; /* update free count */ in bcm_mwbmap_free()
[all …]
/OK3568_Linux_fs/kernel/drivers/net/wireless/rockchip_wlan/rkwifi/bcmdhd_indep_power/
H A Dbcmutils.c2895 int32 ifree; /* Count of free indices. Used only in audits */ member
2939 mwbmap_p->ifree = (int32)items_max; in bcm_mwbmap_init()
3059 mwbmap_p->ifree--; /* decrement system wide free count */ in bcm_mwbmap_alloc()
3060 MWBMAP_ASSERT(mwbmap_p->ifree >= 0); in bcm_mwbmap_alloc()
3065 mwbmap_p->ifree)); in bcm_mwbmap_alloc()
3073 ASSERT(mwbmap_p->ifree == 0); in bcm_mwbmap_alloc()
3097 mwbmap_p->ifree--; /* update free count */ in bcm_mwbmap_force()
3098 ASSERT(mwbmap_p->ifree >= 0); in bcm_mwbmap_force()
3102 mwbmap_p->ifree)); in bcm_mwbmap_force()
3151 mwbmap_p->ifree++; /* update free count */ in bcm_mwbmap_free()
[all …]
/OK3568_Linux_fs/kernel/drivers/net/wireless/rockchip_wlan/cywdhd/bcmdhd/
H A Dbcmutils.c663 int32 ifree; /* Count of free indices. Used only in audits */ member
707 mwbmap_p->ifree = (int32)items_max; in bcm_mwbmap_init()
827 mwbmap_p->ifree--; /* decrement system wide free count */ in bcm_mwbmap_alloc()
828 MWBMAP_ASSERT(mwbmap_p->ifree >= 0); in bcm_mwbmap_alloc()
833 mwbmap_p->ifree)); in bcm_mwbmap_alloc()
841 ASSERT(mwbmap_p->ifree == 0); in bcm_mwbmap_alloc()
865 mwbmap_p->ifree--; /* update free count */ in bcm_mwbmap_force()
866 ASSERT(mwbmap_p->ifree >= 0); in bcm_mwbmap_force()
870 mwbmap_p->ifree)); in bcm_mwbmap_force()
919 mwbmap_p->ifree++; /* update free count */ in bcm_mwbmap_free()
[all …]
/OK3568_Linux_fs/kernel/fs/xfs/libxfs/
H A Dxfs_ialloc.h75 struct xfs_icluster *ifree); /* cluster info if deleted */
H A Dxfs_sb.c890 uint64_t ifree = 0; in xfs_initialize_perag_data() local
912 ifree += pag->pagi_freecount; in xfs_initialize_perag_data()
927 if (fdblocks > sbp->sb_dblocks || ifree > ialloc) { in xfs_initialize_perag_data()
935 sbp->sb_ifree = ifree; in xfs_initialize_perag_data()
/OK3568_Linux_fs/kernel/drivers/net/wireless/rockchip_wlan/rkwifi/bcmdhd/
H A Dbcmutils.c1686 int32 ifree; /* Count of free indices. Used only in audits */ member
1730 mwbmap_p->ifree = (int32)items_max; in BCMATTACHFN()
1854 mwbmap_p->ifree--; /* decrement system wide free count */ in BCMFASTPATH()
1855 MWBMAP_ASSERT(mwbmap_p->ifree >= 0); in BCMFASTPATH()
1860 mwbmap_p->ifree)); in BCMFASTPATH()
1868 ASSERT(mwbmap_p->ifree == 0); in BCMFASTPATH()
1892 mwbmap_p->ifree--; /* update free count */ in bcm_mwbmap_force()
1893 ASSERT(mwbmap_p->ifree >= 0); in bcm_mwbmap_force()
1897 mwbmap_p->ifree)); in bcm_mwbmap_force()
1946 mwbmap_p->ifree++; /* update free count */ in BCMPOSTTRAPFASTPATH()
[all …]
/OK3568_Linux_fs/external/rkwifibt/drivers/bcmdhd/
H A Dbcmutils.c1686 int32 ifree; /* Count of free indices. Used only in audits */ member
1730 mwbmap_p->ifree = (int32)items_max; in BCMATTACHFN()
1854 mwbmap_p->ifree--; /* decrement system wide free count */ in BCMFASTPATH()
1855 MWBMAP_ASSERT(mwbmap_p->ifree >= 0); in BCMFASTPATH()
1860 mwbmap_p->ifree)); in BCMFASTPATH()
1868 ASSERT(mwbmap_p->ifree == 0); in BCMFASTPATH()
1892 mwbmap_p->ifree--; /* update free count */ in bcm_mwbmap_force()
1893 ASSERT(mwbmap_p->ifree >= 0); in bcm_mwbmap_force()
1897 mwbmap_p->ifree)); in bcm_mwbmap_force()
1946 mwbmap_p->ifree++; /* update free count */ in BCMPOSTTRAPFASTPATH()
[all …]
/OK3568_Linux_fs/kernel/fs/ext4/
H A Dxattr.c2624 int isize_diff, size_t ifree, in ext4_xattr_make_inode_space() argument
2636 while (isize_diff > ifree) { in ext4_xattr_make_inode_space()
2654 if (total_size + ifree < isize_diff) { in ext4_xattr_make_inode_space()
2680 ifree += total_size; in ext4_xattr_make_inode_space()
2698 size_t ifree, bfree; in ext4_expand_extra_isize_ea() local
2726 ifree = ext4_xattr_free_space(base, &min_offs, base, &total_ino); in ext4_expand_extra_isize_ea()
2727 if (ifree >= isize_diff) in ext4_expand_extra_isize_ea()
2753 if (bfree + ifree < isize_diff) { in ext4_expand_extra_isize_ea()
2767 isize_diff, ifree, bfree, in ext4_expand_extra_isize_ea()
/OK3568_Linux_fs/kernel/fs/xfs/
H A Dxfs_super.c794 uint64_t ifree; in xfs_fs_statfs() local
806 ifree = percpu_counter_sum(&mp->m_ifree); in xfs_fs_statfs()
832 ffree = statp->f_files - (icount - ifree); in xfs_fs_statfs()
H A Dxfs_log_recover.c3511 uint64_t ifree; in xlog_recover_check_summary() local
3518 ifree = 0LL; in xlog_recover_check_summary()
3540 ifree += be32_to_cpu(agi->agi_freecount); in xlog_recover_check_summary()