From patchwork Wed Mar 27 21:34:14 2024 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Eric Van Hensbergen X-Patchwork-Id: 13607497 Received: from smtp.kernel.org (aws-us-west-2-korg-mail-1.web.codeaurora.org [10.30.226.201]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.subspace.kernel.org (Postfix) with ESMTPS id F34FD153506; Wed, 27 Mar 2024 21:34:35 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=10.30.226.201 ARC-Seal: i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1711575276; cv=none; b=o4xnKmmlCW9d86svYmDlPXMjxPL7/jypjz1IGjI0gNqBK9exixfpaL3WBx5MqnOZih1D+YBNunz9377mUJV000Hy30M4dQVmTS+dla8fU3+1YsCJVTigXEnUIxAdIUXc3gqDyA3JSfJEZFdOk3B8yQEmuWVuSZ6W+b8BGghwXRY= ARC-Message-Signature: i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1711575276; c=relaxed/simple; bh=1PQshf9oLNWymLSf6XO3y7JgS+i8nEM66r2+FQV9ULo=; h=Date:From:To:Cc:Subject:Message-ID:MIME-Version:Content-Type: Content-Disposition; b=fA93II9XYB4Q6gcjhLdRw098ECwZ956TnPyb1Fsor3nemKBxXqyFxi+wGjZEPbJUQA1RvpgV9055hkSc54yrP+lSDbye/vSpkrO7VfCInSPMOkq0RSrLiXlqRnq7SUyGr1v+ypdA9rrGcXfM6WaATzgj6G26el1jnyldEOGalEg= ARC-Authentication-Results: i=1; smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=kernel.org header.i=@kernel.org header.b=Jvegs6pu; arc=none smtp.client-ip=10.30.226.201 Authentication-Results: smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=kernel.org header.i=@kernel.org header.b="Jvegs6pu" Received: by smtp.kernel.org (Postfix) with ESMTPSA id 34E9CC433F1; Wed, 27 Mar 2024 21:34:35 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1711575275; bh=1PQshf9oLNWymLSf6XO3y7JgS+i8nEM66r2+FQV9ULo=; h=Date:From:To:Cc:Subject:From; b=Jvegs6puaU3ogoSLYQKoKNWCNQ6kIUZDdOMAaBshLPxcwoXmWcJrPAuYR1j6jLMMu HJplGER0DDwE3JKIdBeZ0Y8E0r50M9Zy1moMJ7iQWcs7HovPY4OkM9OZdtKb1jgj41 i8AY1s7e1WzJgvVL/2lq26bPEU62nRYiIUAx1tv1F6roxUmXbBqjzz7ZPLIqv1zC68 dgaf4wJlKOvSTTqeEet4hxrrXgF758Nn7Ijp+W092obLIsm3pTnSY2yeYg/XtgPUsg 4ujBtNP9gOOkBhhgfcw9/OBEJOt0EGgh9cEJDIW6ErnT0v/tzccje4KtFx7Zi5afZB 6YYgIaMuGGnxQ== Date: Wed, 27 Mar 2024 21:34:14 +0000 From: Eric Van Hensbergen To: torvalds@linux-foundation.org Cc: v9fs@lists.linux.dev, linux-kernel@vger.kernel.org Subject: [GIT PULL] fs/9p: fixes for 6.9-rc1 Message-ID: Precedence: bulk X-Mailing-List: v9fs@lists.linux.dev List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Disposition: inline The following changes since commit 4cece764965020c22cff7665b18a012006359095: Linux 6.9-rc1 (2024-03-24 14:10:05 -0700) are available in the Git repository at: git://git.kernel.org/pub/scm/linux/kernel/git/ericvh/v9fs.git tags/9p-fixes-for-6.9-rc1 for you to fetch changes up to 6630036b7c228f57c7893ee0403e92c2db2cd21d: fs/9p: fix uninitialized values during inode evict (2024-03-25 14:16:06 +0000) ---------------------------------------------------------------- fs/9p: fix errors found in 6.9-rc1 Two of these fix syzbot reported issues, and the other fixes a unused variable in some configurations. Signed-off-by: Eric Van Hensbergen ---------------------------------------------------------------- Colin Ian King (1): fs/9p: remove redundant pointer v9ses Eric Van Hensbergen (1): fs/9p: fix uninitialized values during inode evict Lizhi Xu (1): fs/9p: fix uaf in in v9fs_stat2inode_dotl fs/9p/vfs_inode.c | 16 ++++++++++------ fs/9p/vfs_inode_dotl.c | 6 +----- 2 files changed, 11 insertions(+), 11 deletions(-)