Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

Merge tag 'xfs-5.8-merge-9' of git://git.kernel.org/pub/scm/fs/xfs/xfs-linux

Pull xfs fix from Darrick Wong:
"We've settled down into the bugfix phase; this one fixes a resource
leak on an error bailout path"

* tag 'xfs-5.8-merge-9' of git://git.kernel.org/pub/scm/fs/xfs/xfs-linux:
xfs: Add the missed xfs_perag_put() for xfs_ifree_cluster()

+3 -1
+3 -1
fs/xfs/xfs_inode.c
··· 2634 2634 error = xfs_trans_get_buf(tp, mp->m_ddev_targp, blkno, 2635 2635 mp->m_bsize * igeo->blocks_per_cluster, 2636 2636 XBF_UNMAPPED, &bp); 2637 - if (error) 2637 + if (error) { 2638 + xfs_perag_put(pag); 2638 2639 return error; 2640 + } 2639 2641 2640 2642 /* 2641 2643 * This buffer may not have been correctly initialised as we