From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from smtp.kernel.org (aws-us-west-2-korg-mail-alma10-1.taild15c8.ts.net [100.103.45.18]) (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 0BC2D32B126; Sat, 12 Sep 2026 18:49:57 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=100.103.45.18 ARC-Seal:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1789238998; cv=none; b=q68NP4UGKzsWYLGitb/kAKXYgN2DoFSoNbU+z7aJ9XTkoNFX1HOWLfUcUgOjUcYBljrtEqGksChttnxn92JliPTJx7a/VY4rjym3d6pc7pqbQiD74uYPMu7PRr9RfnV25gSC9V4X1fOA0/nEZWcEhBc1AQL9BJAb72B18A3sNM0= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1789238998; c=relaxed/simple; bh=oJ4XrSOtuo7MY+XEa/YyD3Pi8aTPw1qzfkTWM1IjJdc=; h=From:To:Cc:Subject:Date:Message-ID:In-Reply-To:References: MIME-Version; b=lOT+q6ICwfMchAA22Uu+1G/F698RHoZFcqFGVy2GEjHo8WYy1lXEsd8ap5mv6P1uWjkchquxfKnOffUU7I2lRmarcqI4mPi6uWnxclu4GRD6sYi3SGAPHt9klKrn5O7xTKcRuzRw2miQ5YvJu+mpOSNlYRsLpgcsBK/azjyoW8g= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b=LLPS8ywN; arc=none smtp.client-ip=100.103.45.18 Authentication-Results: smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b="LLPS8ywN" Received: by smtp.kernel.org (Postfix) with ESMTPSA id 182DB1F00893; Sat, 12 Sep 2026 18:49:55 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=linuxfoundation.org; s=korg; t=1789238996; bh=7D26thxQyelmBCKGoenlfFSgzThsOz1WflV1bZF/jMY=; h=From:To:Cc:Subject:Date:In-Reply-To:References; b=LLPS8ywNEkEjqewa8GZKOYNOU2QXSW/zshwaszeSLfp4B8Q31njWqBNiDFUoDvIgo o9TpElDOARCGVTShqvfPlx00SXP7Z2HpDVlQJ8a4q4flH/yhBM2djbv/rQQnZ20ubr XdbxV8AbbA92vg2mrxIVF0BSuotSrLeHyG/hPCy8= From: Greg Kroah-Hartman To: stable@vger.kernel.org Cc: Greg Kroah-Hartman , patches@lists.linux.dev, Kalesh AP , Leon Romanovsky , Sasha Levin Subject: [PATCH 5.15 574/935] RDMA/restrack: Fix typos in the comments Date: Sat, 12 Sep 2026 09:00:04 +0200 Message-ID: <20260912065540.005300332@linuxfoundation.org> X-Mailer: git-send-email 2.55.0 In-Reply-To: <20260912065526.833703348@linuxfoundation.org> References: <20260912065526.833703348@linuxfoundation.org> User-Agent: quilt/0.69 X-stable: review X-Patchwork-Hint: ignore Precedence: bulk X-Mailing-List: patches@lists.linux.dev List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Transfer-Encoding: 8bit 5.15-stable review patch. If anyone has any objections, please let me know. ------------------ From: Kalesh AP [ Upstream commit d43358cda7c4696e08880aaa58a7df82e471fa7c ] Fix couple of occurrences of the misspelled word "reource" in the comments with the correct spelling "resource". Signed-off-by: Kalesh AP Link: https://patch.msgid.link/20251113105457.879903-1-kalesh-anakkur.purayil@broadcom.com Signed-off-by: Leon Romanovsky Stable-dep-of: 709ba0e5311b ("RDMA/core: Fix use after free in ib_query_qp()") Signed-off-by: Sasha Levin --- drivers/infiniband/core/restrack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/drivers/infiniband/core/restrack.c b/drivers/infiniband/core/restrack.c index 438ed35881752..bd8be7e71cd79 100644 --- a/drivers/infiniband/core/restrack.c +++ b/drivers/infiniband/core/restrack.c @@ -168,7 +168,7 @@ void rdma_restrack_new(struct rdma_restrack_entry *res, EXPORT_SYMBOL(rdma_restrack_new); /** - * rdma_restrack_add() - add object to the reource tracking database + * rdma_restrack_add() - add object to the resource tracking database * @res: resource entry */ void rdma_restrack_add(struct rdma_restrack_entry *res) @@ -267,7 +267,7 @@ int rdma_restrack_put(struct rdma_restrack_entry *res) EXPORT_SYMBOL(rdma_restrack_put); /** - * rdma_restrack_del() - delete object from the reource tracking database + * rdma_restrack_del() - delete object from the resource tracking database * @res: resource entry */ void rdma_restrack_del(struct rdma_restrack_entry *res) -- 2.53.0