diff options
author | Paolo Bonzini <pbonzini@redhat.com> | 2024-11-08 12:13:48 -0500 |
---|---|---|
committer | Paolo Bonzini <pbonzini@redhat.com> | 2024-11-08 12:13:48 -0500 |
commit | e3e0f9b7ae280f2f479f74ef7799f4108d0e7f77 (patch) | |
tree | 85a1717293b6536f51176b6daa6e87e5f8338a88 /fs/jfs/jfs_dmap.c | |
parent | 5cb1659f412041e4780f2e8ee49b2e03728a2ba6 (diff) | |
parent | 332fa4a802b16ccb727199da685294f85f9880cb (diff) | |
download | linux-e3e0f9b7ae280f2f479f74ef7799f4108d0e7f77.tar.gz linux-e3e0f9b7ae280f2f479f74ef7799f4108d0e7f77.tar.bz2 linux-e3e0f9b7ae280f2f479f74ef7799f4108d0e7f77.zip |
Merge tag 'kvm-riscv-6.13-1' of https://github.com/kvm-riscv/linux into HEAD
KVM/riscv changes for 6.13
- Accelerate KVM RISC-V when running as a guest
- Perf support to collect KVM guest statistics from host side
Diffstat (limited to 'fs/jfs/jfs_dmap.c')
-rw-r--r-- | fs/jfs/jfs_dmap.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/jfs/jfs_dmap.c b/fs/jfs/jfs_dmap.c index 974ecf5e0d95..3ab410059dc2 100644 --- a/fs/jfs/jfs_dmap.c +++ b/fs/jfs/jfs_dmap.c @@ -187,7 +187,7 @@ int dbMount(struct inode *ipbmap) } bmp->db_numag = le32_to_cpu(dbmp_le->dn_numag); - if (!bmp->db_numag || bmp->db_numag >= MAXAG) { + if (!bmp->db_numag || bmp->db_numag > MAXAG) { err = -EINVAL; goto err_release_metapage; } |