diff options
| author | Linus Torvalds <torvalds@linux-foundation.org> | 2020-09-02 04:36:45 +0300 | 
|---|---|---|
| committer | Linus Torvalds <torvalds@linux-foundation.org> | 2020-09-02 04:36:45 +0300 | 
| commit | dcdfd9cc28ddd356d24d5461119e4c1d19284ff5 (patch) | |
| tree | a1fb7b8e52deeacbd638794a3ba96c684ca8256e /fs/btrfs/tree-checker.c | |
| parent | b765a32a2e9170702467747e290614be072c4f76 (diff) | |
| parent | f96d6960abbc52e26ad124e69e6815283d3e1674 (diff) | |
| download | linux-dcdfd9cc28ddd356d24d5461119e4c1d19284ff5.tar.xz | |
Merge tag 'for-5.9-rc3-tag' of git://git.kernel.org/pub/scm/linux/kernel/git/kdave/linux
Pull btrfs fixes from David Sterba:
 "Two small fixes and a bunch of lockdep fixes for warnings that show up
  with an upcoming tree locking update but are valid with current locks
  as well"
* tag 'for-5.9-rc3-tag' of git://git.kernel.org/pub/scm/linux/kernel/git/kdave/linux:
  btrfs: tree-checker: fix the error message for transid error
  btrfs: set the lockdep class for log tree extent buffers
  btrfs: set the correct lockdep class for new nodes
  btrfs: allocate scrub workqueues outside of locks
  btrfs: fix potential deadlock in the search ioctl
  btrfs: drop path before adding new uuid tree entry
  btrfs: block-group: fix free-space bitmap threshold
Diffstat (limited to 'fs/btrfs/tree-checker.c')
| -rw-r--r-- | fs/btrfs/tree-checker.c | 2 | 
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/btrfs/tree-checker.c b/fs/btrfs/tree-checker.c index 517b44300a05..7b1fee630f97 100644 --- a/fs/btrfs/tree-checker.c +++ b/fs/btrfs/tree-checker.c @@ -984,7 +984,7 @@ static int check_inode_item(struct extent_buffer *leaf,  	/* Note for ROOT_TREE_DIR_ITEM, mkfs could set its transid 0 */  	if (btrfs_inode_transid(leaf, iitem) > super_gen + 1) {  		inode_item_err(leaf, slot, -			"invalid inode generation: has %llu expect [0, %llu]", +			"invalid inode transid: has %llu expect [0, %llu]",  			       btrfs_inode_transid(leaf, iitem), super_gen + 1);  		return -EUCLEAN;  	}  | 
