From patchwork Wed Jun 26 18:27:40 2024 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Chuck Lever X-Patchwork-Id: 13713269 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 7B0AE6E613; Wed, 26 Jun 2024 18:27:56 +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=1719426476; cv=none; b=oZhkYM0Q5eY6C4DJanxz3+2Nz2FpRZ1+8ATkSxZAT/jA7u5jjAn/bUyB2uOe9I+mtIEkdKy1AS0Y1KeZK5G9GyAeAhHExp6wuQPc8dOmTDzLTXmEZL3ew1D4Qb1QtCuZ+Rgq9deBqD/8iPB5ykMtLNSMI91jYShkAJ3LauNJUkk= ARC-Message-Signature: i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1719426476; c=relaxed/simple; bh=G+ZtIjhf8cOWG76YSlWa0IMYIwTaKc2Nr1+gh6cDYSw=; h=From:To:Cc:Subject:Date:Message-ID:MIME-Version; b=T+S64HguOiwmpmcaaWuch30S+fK8VGSRd7ppA13vLugmQk/jfgCxKD5vUDkCFB+tP7wYthyCJj/qPJRKakeVJMsx/+XF+d6gQuW2u6S/q+96lDk1h3PVSAooWTpcFHopFkw7xcz+1kUbuSTFF8Q8GU9b2N6jaDo0db+RYC2sR68= ARC-Authentication-Results: i=1; smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=kernel.org header.i=@kernel.org header.b=NSeYGX/a; 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="NSeYGX/a" Received: by smtp.kernel.org (Postfix) with ESMTPSA id BD856C116B1; Wed, 26 Jun 2024 18:27:55 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1719426476; bh=G+ZtIjhf8cOWG76YSlWa0IMYIwTaKc2Nr1+gh6cDYSw=; h=From:To:Cc:Subject:Date:From; b=NSeYGX/aZGCEqRpqaf4tdmhZuqklSEw38+FzhGi9jbnRr6mUYaftyVTYQV7bfEpt5 vMUyuN7dAlQk/FmrIDFjvxMnbQxszSAIWrg62YmsZC8pIGqKrqXlRfY5GJd78IjHA6 xG8fOSqbG7Jo02n2e1yi9A5pBWEaPM5Ehd3WCFmzQKlcrtOfjgTJ8ackSKXlrt5lnC YkAyY3m/rKQkcZ+if2KxRU8/5u9aMb4VzZ4iMeAzAv4pty3myVtaEBzJMzlLvKNcIv 0wenqQP6sCDgNroXNtpmCwO3lZUsLH/Bq+k42wlzH5eIFCqGLnLfZGaHMQJNqDQkQd VGy/8jcnRJugQ== From: cel@kernel.org To: Greg Kroah-Hartman , Sasha Levin Cc: , , Chuck Lever Subject: [PATCH 5.10 0/5] Five missing NFSD fixes for v5.10.y Date: Wed, 26 Jun 2024 14:27:40 -0400 Message-ID: <20240626182745.288665-1-cel@kernel.org> X-Mailer: git-send-email 2.45.1 Precedence: bulk X-Mailing-List: linux-nfs@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 From: Chuck Lever Hi- It was pointed out that the NFSD fixes that went into 5.10.220 were missing a few forward fixes from upstream. These five are the ones I identified. I've run them through the usual NFSD CI tests and found no new issues. Chuck Lever (3): SUNRPC: Fix a NULL pointer deref in trace_svc_stats_latency() SUNRPC: Fix svcxdr_init_decode's end-of-buffer calculation SUNRPC: Fix svcxdr_init_encode's buflen calculation Jeff Layton (1): nfsd: hold a lighter-weight client reference over CB_RECALL_ANY Yunjian Wang (1): SUNRPC: Fix null pointer dereference in svc_rqst_free() fs/nfsd/nfs4state.c | 7 ++----- include/linux/sunrpc/svc.h | 20 ++++++++++++++++---- include/trace/events/sunrpc.h | 8 ++++---- net/sunrpc/svc.c | 18 +++++++++++++++++- 4 files changed, 39 insertions(+), 14 deletions(-)