The quilt patch titled Subject: squashfs-check-the-inode-number-is-not-the-invalid-value-of-zero-v2 has been removed from the -mm tree. Its filename was squashfs-check-the-inode-number-is-not-the-invalid-value-of-zero-v2.patch This patch was dropped because it was folded into squashfs-check-the-inode-number-is-not-the-invalid-value-of-zero.patch ------------------------------------------------------ From: Phillip Lougher <phillip@xxxxxxxxxxxxxxx> Subject: squashfs-check-the-inode-number-is-not-the-invalid-value-of-zero-v2 Date: Tue, 9 Apr 2024 21:47:23 +0100 whitespace fix Link: https://lkml.kernel.org/r/20240409204723.446925-1-phillip@xxxxxxxxxxxxxxx Reported-by: "Ubisectech Sirius" <bugreport@xxxxxxxxxxxxxx> Closes: https://lore.kernel.org/lkml/87f5c007-b8a5-41ae-8b57-431e924c5915.bugreport@xxxxxxxxxxxxxx/ Signed-off-by: Phillip Lougher <phillip@xxxxxxxxxxxxxxx> Cc: Christian Brauner <brauner@xxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- fs/squashfs/inode.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) --- a/fs/squashfs/inode.c~squashfs-check-the-inode-number-is-not-the-invalid-value-of-zero-v2 +++ a/fs/squashfs/inode.c @@ -49,7 +49,7 @@ static int squashfs_new_inode(struct sup int err; inode->i_ino = le32_to_cpu(sqsh_ino->inode_number); - if(inode->i_ino == 0) + if (inode->i_ino == 0) return -EINVAL; err = squashfs_get_id(sb, le16_to_cpu(sqsh_ino->uid), &i_uid); _ Patches currently in -mm which might be from phillip@xxxxxxxxxxxxxxx are squashfs-check-the-inode-number-is-not-the-invalid-value-of-zero.patch squashfs-remove-deprecated-strncpy-by-not-copying-the-string.patch