From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by smtp.lore.kernel.org (Postfix) with ESMTP id 15F31EB64DA for ; Wed, 19 Jul 2023 15:40:35 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S231925AbjGSPkd (ORCPT ); Wed, 19 Jul 2023 11:40:33 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:46526 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S231926AbjGSPkb (ORCPT ); Wed, 19 Jul 2023 11:40:31 -0400 Received: from dfw.source.kernel.org (dfw.source.kernel.org [IPv6:2604:1380:4641:c500::1]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id 28BB71FF9; Wed, 19 Jul 2023 08:40:27 -0700 (PDT) Received: from smtp.kernel.org (relay.kernel.org [52.25.139.140]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by dfw.source.kernel.org (Postfix) with ESMTPS id A718461763; Wed, 19 Jul 2023 15:40:26 +0000 (UTC) Received: by smtp.kernel.org (Postfix) with ESMTPSA id 4A9FCC433D9; Wed, 19 Jul 2023 15:40:25 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=linuxfoundation.org; s=korg; t=1689781225; bh=yX/Ul0q6k+gD3JIVRJJiWvifByik2J4h1betQHGgVIY=; h=Date:From:To:Cc:Subject:References:In-Reply-To:From; b=2WQq4ocf3+cbAQZPfeA0Q53vhtgOdCkfpVphsaeGYXyTMBDhAqLepxMq1fT7w7X8o VtL0tCtyBeEgGrq402GARJ2rpt9AdzNnLycNBKC7tr4BOXH1Hdg11EbqXL0ZKWZf++ vwDH5H+ZzKEswf5JHHNFFD/LpDIgFk84uKmo7DQ0= Date: Wed, 19 Jul 2023 17:40:22 +0200 From: Greg KH To: Eric Van Hensbergen Cc: Latchesar Ionkov , Dominique Martinet , Christian Schoenebeck , v9fs@lists.linux.dev, linux-kernel@vger.kernel.org, kernel@pengutronix.de, stable@vger.kernel.org, Robert Schwebel Subject: Re: [PATCH v3 3/4] fs/9p: fix type mismatch in file cache mode helper Message-ID: <2023071914-serotonin-balmy-5d58@gregkh> References: <20230716-fixes-overly-restrictive-mmap-v3-0-769791f474fd@kernel.org> <20230716-fixes-overly-restrictive-mmap-v3-3-769791f474fd@kernel.org> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20230716-fixes-overly-restrictive-mmap-v3-3-769791f474fd@kernel.org> Precedence: bulk List-ID: X-Mailing-List: stable@vger.kernel.org On Wed, Jul 19, 2023 at 03:17:07PM +0000, Eric Van Hensbergen wrote: > There were two flags (s_flags and s_cache) which had incorrect signed > type in the parameters of the file cache mode helper function. > > Fixes: 1543b4c5071c ("fs/9p: remove writeback fid and fix per-file modes") > Link: https://lore.kernel.org/v9fs/ZK25XZ%2BGpR3KHIB%2F@pengutronix.de/ > Reviewed-by: Dominique Martinet > Signed-off-by: Eric Van Hensbergen > --- > fs/9p/fid.h | 4 ++-- > 1 file changed, 2 insertions(+), 2 deletions(-) This is not the correct way to submit patches for inclusion in the stable kernel tree. Please read: https://www.kernel.org/doc/html/latest/process/stable-kernel-rules.html for how to do this properly.