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 5BAD03BC4DB; Thu, 15 Jan 2026 17:09:01 +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=1768496941; cv=none; b=r4h78EwxSupx3H35RLHCcERFTpwZYaxbIb7rRsL12I37XLE0/h0x1+yULg0wEOiTQxGjIihaYEfB1o2C9//yOEVdgnGQUGrV/cRVm1JyQ9Xdjg4ESuW88ZShauOP31hbMybY3ZTBOYO0vU4ERnYiQ0+1WVOu6U7ZktUsQ/V3DOo= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1768496941; c=relaxed/simple; bh=JOfbakIgZj5lvq4eapbCKbdZwrkPCC/kKkXH2Q5YRuo=; h=From:To:Cc:Subject:Date:Message-ID:In-Reply-To:References: MIME-Version; b=pD7niw+5aZh5S3q1oGRGhOTI/wrmjMEUesjAvPkEGdKQ1inNQsA7C6M3MbOYpmI+FPGVjLYFFZoBzbFIGfzm66Zucc2G4VihMmfIo9d6Xy2nECyNrqBrvnxgKLidRPM1VfTUjAqwE4HO7yMR42YPj0m97ujYJVEtPzwDpQecWRo= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b=VK6JKTLd; 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="VK6JKTLd" Received: by smtp.kernel.org (Postfix) with ESMTPSA id A09DDC19422; Thu, 15 Jan 2026 17:09:00 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=linuxfoundation.org; s=korg; t=1768496941; bh=JOfbakIgZj5lvq4eapbCKbdZwrkPCC/kKkXH2Q5YRuo=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=VK6JKTLdvwEsrTfhO01nvMT5/0a84cANmtIcg4zqx4ICd65GZVx7hUcLwglTnIe9Q q1kfQECq5IvnLvB/ANZQnECCwIcWEy91OmJLTZlnLU63pln/hyiQ5IO8K1nYXLZuuI IrhyOV9iP6aniV91Omz3LK/55O4JIVuQyN08m80U= From: Greg Kroah-Hartman To: stable@vger.kernel.org Cc: Greg Kroah-Hartman , patches@lists.linux.dev, Chen Hanxiao , Jeff Layton , Chuck Lever , Sasha Levin Subject: [PATCH 6.6 68/88] NFS: trace: show TIMEDOUT instead of 0x6e Date: Thu, 15 Jan 2026 17:48:51 +0100 Message-ID: <20260115164148.772722786@linuxfoundation.org> X-Mailer: git-send-email 2.52.0 In-Reply-To: <20260115164146.312481509@linuxfoundation.org> References: <20260115164146.312481509@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.6-stable review patch. If anyone has any objections, please let me know. ------------------ From: Chen Hanxiao [ Upstream commit cef48236dfe55fa266d505e8a497963a7bc5ef2a ] __nfs_revalidate_inode may return ETIMEDOUT. print symbol of ETIMEDOUT in nfs trace: before: cat-5191 [005] 119.331127: nfs_revalidate_inode_exit: error=-110 (0x6e) after: cat-1738 [004] 44.365509: nfs_revalidate_inode_exit: error=-110 (TIMEDOUT) Signed-off-by: Chen Hanxiao Reviewed-by: Jeff Layton Signed-off-by: Chuck Lever Stable-dep-of: c6c209ceb87f ("NFSD: Remove NFSERR_EAGAIN") Signed-off-by: Sasha Levin Signed-off-by: Greg Kroah-Hartman --- include/trace/misc/nfs.h | 1 + 1 file changed, 1 insertion(+) --- a/include/trace/misc/nfs.h +++ b/include/trace/misc/nfs.h @@ -52,6 +52,7 @@ TRACE_DEFINE_ENUM(NFSERR_JUKEBOX); { NFSERR_IO, "IO" }, \ { NFSERR_NXIO, "NXIO" }, \ { ECHILD, "CHILD" }, \ + { ETIMEDOUT, "TIMEDOUT" }, \ { NFSERR_EAGAIN, "AGAIN" }, \ { NFSERR_ACCES, "ACCES" }, \ { NFSERR_EXIST, "EXIST" }, \