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 CE5FC2D8DA3; Wed, 4 Feb 2026 15:19:06 +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=1770218346; cv=none; b=RgAr+dvOlPbm8YCyXD/0al5Aym02HQ0Z3VoWFMuUWhv9boRPpr1t5YpLBg6btrYf6Qdab0Nz3/4Z2Vz9034SO3lRmMKoe+mw+b1TI9E7TLnt0Tz8IL2/+LLUua9QDFY3vJuT+ztdbD/WHgSdPnKwcXZM9l4GvAdzEd9b0XBr8oA= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1770218346; c=relaxed/simple; bh=B8elcv9OcKcRwsNigyfWFCKlsF+4gl3esKc164pyW7Q=; h=From:To:Cc:Subject:Date:Message-ID:In-Reply-To:References: MIME-Version; b=psJ9PZNPj4VJXyxX/foM7DaLM0TUp3dBZa4tfjRCdMYRvG9Al6j4M4OPDSleioCoEi+oAoaRHIiAfgM09YEqcWSVZNIz/GrRo8XcowyfyaVDYap/u1E6OUwfYrIzv1CG9gsZIOXpPj0TbauhSENZE+cxLtD1PSiNIHf/QvWiQjQ= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b=SyD8de2A; 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="SyD8de2A" Received: by smtp.kernel.org (Postfix) with ESMTPSA id 160CFC4CEF7; Wed, 4 Feb 2026 15:19:05 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=linuxfoundation.org; s=korg; t=1770218346; bh=B8elcv9OcKcRwsNigyfWFCKlsF+4gl3esKc164pyW7Q=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=SyD8de2APAQ+QVlf3ByJv6WEpTNcIoSvXVCNh5cGx92meK11m5aZikockXDiqwltS e43HRwwscasMtfju2B/uT8N7Dowk04AeoP5BebK1q94DhEq51qtxKN7zqF/nYqT+xM EM4rqa++EqHfJkfaYMxAbz4kuhbkSChi8061JgYQ= From: Greg Kroah-Hartman To: stable@vger.kernel.org Cc: Greg Kroah-Hartman , patches@lists.linux.dev, Chen Ni , Jamal Hadi Salim , Jakub Kicinski , Ben Hutchings Subject: [PATCH 6.1 274/280] net/sched: act_ife: convert comma to semicolon Date: Wed, 4 Feb 2026 15:40:48 +0100 Message-ID: <20260204143919.563928585@linuxfoundation.org> X-Mailer: git-send-email 2.53.0 In-Reply-To: <20260204143909.614719725@linuxfoundation.org> References: <20260204143909.614719725@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.1-stable review patch. If anyone has any objections, please let me know. ------------------ From: Chen Ni commit 205305c028ad986d0649b8b100bab6032dcd1bb5 upstream. Replace comma between expressions with semicolons. Using a ',' in place of a ';' can have unintended side effects. Although that is not the case here, it is seems best to use ';' unless ',' is intended. Found by inspection. No functional change intended. Compile tested only. Signed-off-by: Chen Ni Reviewed-by: Jamal Hadi Salim Link: https://patch.msgid.link/20251112072709.73755-1-nichen@iscas.ac.cn Signed-off-by: Jakub Kicinski Cc: Ben Hutchings Signed-off-by: Greg Kroah-Hartman --- net/sched/act_ife.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) --- a/net/sched/act_ife.c +++ b/net/sched/act_ife.c @@ -648,9 +648,9 @@ static int tcf_ife_dump(struct sk_buff * memset(&opt, 0, sizeof(opt)); - opt.index = ife->tcf_index, - opt.refcnt = refcount_read(&ife->tcf_refcnt) - ref, - opt.bindcnt = atomic_read(&ife->tcf_bindcnt) - bind, + opt.index = ife->tcf_index; + opt.refcnt = refcount_read(&ife->tcf_refcnt) - ref; + opt.bindcnt = atomic_read(&ife->tcf_bindcnt) - bind; spin_lock_bh(&ife->tcf_lock); opt.action = ife->tcf_action;