Home
last modified time | relevance | path

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

/linux-2.6.39/fs/xfs/
Dxfs_mount.c1703 long long lcounter; /* long counter for 64 bit fields */ in xfs_mod_incore_sb_unlocked() local
1714 lcounter = (long long)mp->m_sb.sb_icount; in xfs_mod_incore_sb_unlocked()
1715 lcounter += delta; in xfs_mod_incore_sb_unlocked()
1716 if (lcounter < 0) { in xfs_mod_incore_sb_unlocked()
1720 mp->m_sb.sb_icount = lcounter; in xfs_mod_incore_sb_unlocked()
1723 lcounter = (long long)mp->m_sb.sb_ifree; in xfs_mod_incore_sb_unlocked()
1724 lcounter += delta; in xfs_mod_incore_sb_unlocked()
1725 if (lcounter < 0) { in xfs_mod_incore_sb_unlocked()
1729 mp->m_sb.sb_ifree = lcounter; in xfs_mod_incore_sb_unlocked()
1732 lcounter = (long long) in xfs_mod_incore_sb_unlocked()
[all …]
Dxfs_fsops.c516 __int64_t lcounter, delta, fdblks_delta; in xfs_reserve_blocks() local
555 lcounter = mp->m_resblks_avail - request; in xfs_reserve_blocks()
556 if (lcounter > 0) { /* release unused blocks */ in xfs_reserve_blocks()
557 fdblks_delta = lcounter; in xfs_reserve_blocks()
558 mp->m_resblks_avail -= lcounter; in xfs_reserve_blocks()
569 lcounter = free - delta; in xfs_reserve_blocks()
570 if (lcounter < 0) { in xfs_reserve_blocks()