Received: by 2002:a05:6a10:a0d1:0:0:0:0 with SMTP id j17csp1501054pxa; Sun, 16 Aug 2020 00:18:24 -0700 (PDT) X-Google-Smtp-Source: ABdhPJy9bHLqOxD4tzFzezIvFu40NDb0CkkhDgVi/VcAdfu5sTUYshWe95ytm02XtTjQUTe+umYo X-Received: by 2002:a17:906:b213:: with SMTP id p19mr9683745ejz.39.1597562304277; Sun, 16 Aug 2020 00:18:24 -0700 (PDT) ARC-Seal: i=1; a=rsa-sha256; t=1597562304; cv=none; d=google.com; s=arc-20160816; b=Ni6ptYrhFTet4LgsvlzzaDw+tSXwh+PepVG6NmKFvJDgFcxoKx8L4CZmpXXb7eRZKF hd37OuAcVO+F4F5nUdvV4vYNrb0cG9/MyS19jlpQnCtJRgN1UDKYxaYV6uObQtnRZ0kb uflQzpQUJcAMFFn/0FDWDuCLEVYQgKS4Zk0AE2jkP1w3gr+lJPDnCJz5xPhJyTUk25wL zBWXlyOUhofMWK1L6/ELruL8GCHl7nOQ4PtsbRWz2QhrjUkIY+Orb4NHN4TMxdQGtbXu ZfXQGCcajv+jo5YYIX6mLJ5igqvQisAMTxI+t7HyayX1rknnG7/lzZPw0xa2orsU114h QRKg== ARC-Message-Signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=arc-20160816; h=list-id:precedence:sender:content-transfer-encoding:mime-version :message-id:date:subject:cc:to:from; bh=a4RMKgk97uedJxssxrIMY3IejQ0FOm2m48h09HgjdeE=; b=fSdxa2O1bauR40X77/5HSxV+ormjKUhdarbju4I6IoYByHfImO4sAfrVz+j4IiEioL Tx2BEOLJK9mpR7ZTyioJrlXWoEVU2HAqCt25x2EbIQleVQ3YACPDqZjOQcMMbiY0itr5 3Lf9tYBUNZW3wIn7mqRf9TxUHHe9zoI4r0op48dKThFl0ptkG4Dhu4T0F0yDUcGvHW5n sRmV06iVE5H4Zj8G3x3Uuppk1Qn/cyJKmHdj+a2F/CWr7xh2A7gTIRW63fN7t1FpiRAE ec0CLVz+khvHh0kjuswce0BphzGtFubxl9LfF95fI6HtN8efLEfoyEwia+ZeZrQW3inz 973A== ARC-Authentication-Results: i=1; mx.google.com; spf=pass (google.com: domain of linux-kernel-owner@vger.kernel.org designates 23.128.96.18 as permitted sender) smtp.mailfrom=linux-kernel-owner@vger.kernel.org Return-Path: Received: from vger.kernel.org (vger.kernel.org. [23.128.96.18]) by mx.google.com with ESMTP id x23si7819496ejw.267.2020.08.16.00.18.01; Sun, 16 Aug 2020 00:18:24 -0700 (PDT) Received-SPF: pass (google.com: domain of linux-kernel-owner@vger.kernel.org designates 23.128.96.18 as permitted sender) client-ip=23.128.96.18; Authentication-Results: mx.google.com; spf=pass (google.com: domain of linux-kernel-owner@vger.kernel.org designates 23.128.96.18 as permitted sender) smtp.mailfrom=linux-kernel-owner@vger.kernel.org Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1729034AbgHPAfP (ORCPT + 99 others); Sat, 15 Aug 2020 20:35:15 -0400 Received: from szxga07-in.huawei.com ([45.249.212.35]:37930 "EHLO huawei.com" rhost-flags-OK-OK-OK-FAIL) by vger.kernel.org with ESMTP id S1726111AbgHPAfP (ORCPT ); Sat, 15 Aug 2020 20:35:15 -0400 Received: from DGGEMS413-HUB.china.huawei.com (unknown [172.30.72.60]) by Forcepoint Email with ESMTP id 3E421A0E0DAA453A4ADE; Sat, 15 Aug 2020 16:49:00 +0800 (CST) Received: from huawei.com (10.175.104.175) by DGGEMS413-HUB.china.huawei.com (10.3.19.213) with Microsoft SMTP Server id 14.3.487.0; Sat, 15 Aug 2020 16:48:49 +0800 From: Miaohe Lin To: , , , , , , , , , , CC: , , , Subject: [PATCH v2] bpf: Convert to use the preferred fallthrough macro Date: Sat, 15 Aug 2020 04:47:45 -0400 Message-ID: <20200815084745.19291-1-linmiaohe@huawei.com> X-Mailer: git-send-email 2.19.1 MIME-Version: 1.0 Content-Transfer-Encoding: 7BIT Content-Type: text/plain; charset=US-ASCII X-Originating-IP: [10.175.104.175] X-CFilter-Loop: Reflected Sender: linux-kernel-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Since commit 294f69e662d1 ("compiler_attributes.h: Add 'fallthrough' pseudo keyword for switch/case use") introduce fallthrough pseudo keyword, then we should convert the uses of fallthrough comments to it. Signed-off-by: Miaohe Lin --- kernel/bpf/cgroup.c | 1 - kernel/bpf/cpumap.c | 2 +- kernel/bpf/syscall.c | 2 +- kernel/bpf/verifier.c | 6 +++--- 4 files changed, 5 insertions(+), 6 deletions(-) diff --git a/kernel/bpf/cgroup.c b/kernel/bpf/cgroup.c index 83ff127ef7ae..daeafd5b6ced 100644 --- a/kernel/bpf/cgroup.c +++ b/kernel/bpf/cgroup.c @@ -1794,7 +1794,6 @@ static bool cg_sockopt_is_valid_access(int off, int size, return prog->expected_attach_type == BPF_CGROUP_GETSOCKOPT; case offsetof(struct bpf_sockopt, optname): - /* fallthrough */ case offsetof(struct bpf_sockopt, level): if (size != size_default) return false; diff --git a/kernel/bpf/cpumap.c b/kernel/bpf/cpumap.c index f1c46529929b..6386b7bb98f2 100644 --- a/kernel/bpf/cpumap.c +++ b/kernel/bpf/cpumap.c @@ -279,7 +279,7 @@ static int cpu_map_bpf_prog_run_xdp(struct bpf_cpu_map_entry *rcpu, break; default: bpf_warn_invalid_xdp_action(act); - /* fallthrough */ + fallthrough; case XDP_DROP: xdp_return_frame(xdpf); stats->drop++; diff --git a/kernel/bpf/syscall.c b/kernel/bpf/syscall.c index 86299a292214..1bf960aa615c 100644 --- a/kernel/bpf/syscall.c +++ b/kernel/bpf/syscall.c @@ -2029,7 +2029,7 @@ bpf_prog_load_check_attach(enum bpf_prog_type prog_type, case BPF_PROG_TYPE_EXT: if (expected_attach_type) return -EINVAL; - /* fallthrough */ + fallthrough; default: return 0; } diff --git a/kernel/bpf/verifier.c b/kernel/bpf/verifier.c index ef938f17b944..1e7f34663f86 100644 --- a/kernel/bpf/verifier.c +++ b/kernel/bpf/verifier.c @@ -2639,7 +2639,7 @@ static bool may_access_direct_pkt_data(struct bpf_verifier_env *env, case BPF_PROG_TYPE_CGROUP_SKB: if (t == BPF_WRITE) return false; - /* fallthrough */ + fallthrough; /* Program types with direct read + write access go here! */ case BPF_PROG_TYPE_SCHED_CLS: @@ -5236,7 +5236,7 @@ static int adjust_ptr_min_max_vals(struct bpf_verifier_env *env, off_reg == dst_reg ? dst : src); return -EACCES; } - /* fall-through */ + fallthrough; default: break; } @@ -10988,7 +10988,7 @@ static int check_attach_btf_id(struct bpf_verifier_env *env) default: if (!prog_extension) return -EINVAL; - /* fallthrough */ + fallthrough; case BPF_MODIFY_RETURN: case BPF_LSM_MAC: case BPF_TRACE_FENTRY: -- 2.19.1