From mboxrd@z Thu Jan 1 00:00:00 1970 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 9B188396B7D; Thu, 15 Jan 2026 16:54:03 +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=1768496043; cv=none; b=QMCGNkgYCzGZFzrgIslmM4ZC73YJJFVtSsAMknYhEWgESuVewdjLeu8aCrQTzEMiY8LJxoZv9cmYquWT8y8KhlDH+6IxwSlaDTGg+ivQ/ASXVEbScePEEnKoCuk3HR4raIMImO2CyO17wc+YX+CHsyLAG1AkD3wYsZ1aJpEu3vI= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1768496043; c=relaxed/simple; bh=N2kUHf7LEPU68JWN/oX8Z/4Frz15hoXfEslHXtaxrTo=; h=From:To:Cc:Subject:Date:Message-ID:In-Reply-To:References: MIME-Version; b=iz3ZkfYkfByJyahOzhsAdKfXL8X4ozeINdJK53aqhi3YRjXmRA9BkdjD7SN3EVuJ2G77BsTtu28U/P8YkgnVo/xeb7W5UEiW24vw+ENR+IMtF1kNcenkEt2WjcNCkKZMLZOfO7ZumD+DwhwQJxUW7d0kcojzCEcPeUYUHR+9r9s= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b=i3quXMIM; arc=none smtp.client-ip=10.30.226.201 Authentication-Results: smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b="i3quXMIM" Received: by smtp.kernel.org (Postfix) with ESMTPSA id 25CBBC116D0; Thu, 15 Jan 2026 16:54:02 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=linuxfoundation.org; s=korg; t=1768496043; bh=N2kUHf7LEPU68JWN/oX8Z/4Frz15hoXfEslHXtaxrTo=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=i3quXMIMIrYD1l5WWAunas9lpyuAphZ3JDczB5ibeLT1ihUqwlwMnnthbbJ5fZjUO dQsh/UfYhvdG7suV/Rc1EEwmx8l0192lRbn+S7CbGyMF2wFoVc2hpP33s1PTTnv0rH XsF3LHeHXCgpGjjcb97GLFnSRtz8qIMAHQJrDDNA= From: Greg Kroah-Hartman To: stable@vger.kernel.org Cc: Greg Kroah-Hartman , patches@lists.linux.dev, ChenXiaoSong , "Paulo Alcantara (Red Hat)" , Steve French , Sasha Levin Subject: [PATCH 6.18 057/181] smb/client: fix NT_STATUS_UNABLE_TO_FREE_VM value Date: Thu, 15 Jan 2026 17:46:34 +0100 Message-ID: <20260115164204.386165473@linuxfoundation.org> X-Mailer: git-send-email 2.52.0 In-Reply-To: <20260115164202.305475649@linuxfoundation.org> References: <20260115164202.305475649@linuxfoundation.org> User-Agent: quilt/0.69 X-stable: review X-Patchwork-Hint: ignore Precedence: bulk X-Mailing-List: stable@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Transfer-Encoding: 8bit 6.18-stable review patch. If anyone has any objections, please let me know. ------------------ From: ChenXiaoSong [ Upstream commit 9f99caa8950a76f560a90074e3a4b93cfa8b3d84 ] This was reported by the KUnit tests in the later patches. See MS-ERREF 2.3.1 STATUS_UNABLE_TO_FREE_VM. Keep it consistent with the value in the documentation. Signed-off-by: ChenXiaoSong Acked-by: Paulo Alcantara (Red Hat) Signed-off-by: Steve French Signed-off-by: Sasha Levin --- fs/smb/client/nterr.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/fs/smb/client/nterr.h b/fs/smb/client/nterr.h index 180602c22355e..e3a607b45e719 100644 --- a/fs/smb/client/nterr.h +++ b/fs/smb/client/nterr.h @@ -70,7 +70,7 @@ extern const struct nt_err_code_struct nt_errs[]; #define NT_STATUS_NO_MEMORY 0xC0000000 | 0x0017 #define NT_STATUS_CONFLICTING_ADDRESSES 0xC0000000 | 0x0018 #define NT_STATUS_NOT_MAPPED_VIEW 0xC0000000 | 0x0019 -#define NT_STATUS_UNABLE_TO_FREE_VM 0x80000000 | 0x001a +#define NT_STATUS_UNABLE_TO_FREE_VM 0xC0000000 | 0x001a #define NT_STATUS_UNABLE_TO_DELETE_SECTION 0xC0000000 | 0x001b #define NT_STATUS_INVALID_SYSTEM_SERVICE 0xC0000000 | 0x001c #define NT_STATUS_ILLEGAL_INSTRUCTION 0xC0000000 | 0x001d -- 2.51.0