Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit f5a46c5e authored by Linux Build Service Account's avatar Linux Build Service Account Committed by Gerrit - the friendly Code Review server
Browse files

Merge "fat: limit the number of error prints"

parents 54ee6ef4 75623543
Loading
Loading
Loading
Loading
+3 −2
Original line number Diff line number Diff line
@@ -296,7 +296,8 @@ static int fat_bmap_cluster(struct inode *inode, int cluster)
	if (ret < 0)
		return ret;
	else if (ret == FAT_ENT_EOF) {
		fat_fs_error(sb, "%s: request beyond EOF (i_pos %lld)",
		fat_fs_error_ratelimit(sb,
				       "%s: request beyond EOF (i_pos %lld)",
				       __func__, MSDOS_I(inode)->i_pos);
		return -EIO;
	}