Home
last modified time | relevance | path

Searched refs:active_ag (Results 1 – 6 of 6) sorted by relevance

/Linux-v4.19/fs/jfs/
Dfile.c76 if (ji->active_ag == -1) { in jfs_open()
78 ji->active_ag = BLKTOAG(addressPXD(&ji->ixpxd), jfs_sb); in jfs_open()
79 atomic_inc(&jfs_sb->bmap->db_active[ji->active_ag]); in jfs_open()
91 if (ji->active_ag != -1) { in jfs_release()
93 atomic_dec(&bmap->db_active[ji->active_ag]); in jfs_release()
94 ji->active_ag = -1; in jfs_release()
Djfs_extent.c552 if (ji->active_ag == -1) { in extBalloc()
554 ji->active_ag = ag; in extBalloc()
555 } else if (ji->active_ag != ag) { in extBalloc()
556 atomic_dec(&bmp->db_active[ji->active_ag]); in extBalloc()
558 ji->active_ag = ag; in extBalloc()
Dsuper.c141 if (ji->active_ag != -1) { in jfs_destroy_inode()
143 atomic_dec(&bmap->db_active[ji->active_ag]); in jfs_destroy_inode()
144 ji->active_ag = -1; in jfs_destroy_inode()
958 jfs_ip->active_ag = -1; in init_once()
Djfs_incore.h56 signed char active_ag; /* ag currently allocating from */ member
Djfs_imap.c401 JFS_IP(ip)->active_ag = -1; in diRead()
1314 jfs_ip->active_ag = -1; in diInitInode()
Djfs_dmap.c804 ((writers == 1) && (JFS_IP(ip)->active_ag != agno))) { in dbAlloc()