From: kernel test robot <lkp@intel.com>
To: LeoLiu-oc <LeoLiu-oc@zhaoxin.com>,
rafael@kernel.org, lenb@kernel.org, james.morse@arm.com,
tony.luck@intel.com, bp@alien8.de, bhelgaas@google.com,
robert.moore@intel.com, yazen.ghannam@amd.com,
avadhut.naik@amd.com, linux-acpi@vger.kernel.org,
linux-kernel@vger.kernel.org, linux-pci@vger.kernel.org,
acpica-devel@lists.linux.dev
Cc: llvm@lists.linux.dev, oe-kbuild-all@lists.linux.dev,
CobeChen@zhaoxin.com, TimGuo@zhaoxin.com,
TonyWWang-oc@zhaoxin.com, leoliu-oc@zhaoxin.com
Subject: Re: [PATCH v3 1/3] ACPI/APEI: Add hest_parse_pcie_aer()
Date: Fri, 19 Jul 2024 01:10:35 +0800 [thread overview]
Message-ID: <202407190015.eutiIYQp-lkp@intel.com> (raw)
In-Reply-To: <20240718062405.30571-2-LeoLiu-oc@zhaoxin.com>
Hi LeoLiu-oc,
kernel test robot noticed the following build warnings:
[auto build test WARNING on pci/for-linus]
[also build test WARNING on rafael-pm/linux-next rafael-pm/bleeding-edge linus/master v6.10 next-20240718]
[cannot apply to pci/next]
[If your patch is applied to the wrong git tree, kindly drop us a note.
And when submitting patch, we suggest to use '--base' as documented in
https://git-scm.com/docs/git-format-patch#_base_tree_information]
url: https://github.com/intel-lab-lkp/linux/commits/LeoLiu-oc/ACPI-APEI-Add-hest_parse_pcie_aer/20240718-144218
base: https://git.kernel.org/pub/scm/linux/kernel/git/pci/pci.git for-linus
patch link: https://lore.kernel.org/r/20240718062405.30571-2-LeoLiu-oc%40zhaoxin.com
patch subject: [PATCH v3 1/3] ACPI/APEI: Add hest_parse_pcie_aer()
config: x86_64-rhel-8.3-rust (https://download.01.org/0day-ci/archive/20240719/202407190015.eutiIYQp-lkp@intel.com/config)
compiler: clang version 18.1.5 (https://github.com/llvm/llvm-project 617a15a9eac96088ae5e9134248d8236e34b91b1)
reproduce (this is a W=1 build): (https://download.01.org/0day-ci/archive/20240719/202407190015.eutiIYQp-lkp@intel.com/reproduce)
If you fix the issue in a separate patch/commit (i.e. not just a new version of
the same patch/commit), kindly add following tags
| Reported-by: kernel test robot <lkp@intel.com>
| Closes: https://lore.kernel.org/oe-kbuild-all/202407190015.eutiIYQp-lkp@intel.com/
All warnings (new ones prefixed by >>):
>> drivers/acpi/apei/hest.c:157:2: warning: unannotated fall-through between switch labels [-Wimplicit-fallthrough]
157 | case ACPI_HEST_TYPE_AER_ENDPOINT:
| ^
drivers/acpi/apei/hest.c:157:2: note: insert '__attribute__((fallthrough));' to silence this warning
157 | case ACPI_HEST_TYPE_AER_ENDPOINT:
| ^
| __attribute__((fallthrough));
drivers/acpi/apei/hest.c:157:2: note: insert 'break;' to avoid fall-through
157 | case ACPI_HEST_TYPE_AER_ENDPOINT:
| ^
| break;
drivers/acpi/apei/hest.c:160:2: warning: unannotated fall-through between switch labels [-Wimplicit-fallthrough]
160 | case ACPI_HEST_TYPE_AER_BRIDGE:
| ^
drivers/acpi/apei/hest.c:160:2: note: insert '__attribute__((fallthrough));' to silence this warning
160 | case ACPI_HEST_TYPE_AER_BRIDGE:
| ^
| __attribute__((fallthrough));
drivers/acpi/apei/hest.c:160:2: note: insert 'break;' to avoid fall-through
160 | case ACPI_HEST_TYPE_AER_BRIDGE:
| ^
| break;
drivers/acpi/apei/hest.c:163:2: warning: unannotated fall-through between switch labels [-Wimplicit-fallthrough]
163 | default:
| ^
drivers/acpi/apei/hest.c:163:2: note: insert '__attribute__((fallthrough));' to silence this warning
163 | default:
| ^
| __attribute__((fallthrough));
drivers/acpi/apei/hest.c:163:2: note: insert 'break;' to avoid fall-through
163 | default:
| ^
| break;
3 warnings generated.
vim +157 drivers/acpi/apei/hest.c
144
145 static bool hest_source_is_pcie_aer(struct acpi_hest_header *hest_hdr, struct pci_dev *dev)
146 {
147 u16 hest_type = hest_hdr->type;
148 u8 pcie_type = pci_pcie_type(dev);
149 struct acpi_hest_aer_common *common;
150
151 common = (struct acpi_hest_aer_common *)(hest_hdr + 1);
152
153 switch (hest_type) {
154 case ACPI_HEST_TYPE_AER_ROOT_PORT:
155 if (pcie_type != PCI_EXP_TYPE_ROOT_PORT)
156 return false;
> 157 case ACPI_HEST_TYPE_AER_ENDPOINT:
158 if (pcie_type != PCI_EXP_TYPE_ENDPOINT)
159 return false;
160 case ACPI_HEST_TYPE_AER_BRIDGE:
161 if (pcie_type != PCI_EXP_TYPE_PCI_BRIDGE && pcie_type != PCI_EXP_TYPE_PCIE_BRIDGE)
162 return false;
163 default:
164 return false;
165 }
166
167 if (common->flags & ACPI_HEST_GLOBAL)
168 return true;
169
170 if (hest_match_pci_devfn(common, dev))
171 return true;
172
173 return false;
174 }
175
--
0-DAY CI Kernel Test Service
https://github.com/intel/lkp-tests/wiki
next prev parent reply other threads:[~2024-07-18 17:10 UTC|newest]
Thread overview: 28+ messages / expand[flat|nested] mbox.gz Atom feed top
2023-11-15 9:16 [PATCH 0/3] Parse the HEST PCIe AER and set to relevant registers LeoLiu-oc
2023-11-15 9:16 ` [PATCH 1/3] ACPI/APEI: Add hest_parse_pcie_aer() LeoLiu-oc
2023-12-06 16:35 ` Rafael J. Wysocki
2023-12-14 2:57 ` LeoLiu-oc
2023-11-15 9:16 ` [PATCH 2/3] PCI: Add AER bits #defines for PCIe to PCI/PCI-X Bridge LeoLiu-oc
2023-11-15 9:16 ` [PATCH 3/3] PCI/ACPI: Add pci_acpi_program_hest_aer_params() LeoLiu-oc
2023-12-06 23:08 ` Bjorn Helgaas
2023-12-14 2:54 ` LeoLiu-oc
2023-12-18 3:04 ` [PATCH v2 0/3] Parse the HEST PCIe AER and set to relevant registers LeoLiu-oc
2023-12-18 3:04 ` [PATCH v2 1/3] ACPI/APEI: Add hest_parse_pcie_aer() LeoLiu-oc
2023-12-18 3:04 ` [PATCH v2 2/3] PCI: Add AER bits #defines for PCIe to PCI/PCI-X Bridge LeoLiu-oc
2024-05-08 22:10 ` Bjorn Helgaas
2024-05-09 8:42 ` LeoLiu-oc
2023-12-18 3:04 ` [PATCH v2 3/3] PCI/ACPI: Add pci_acpi_program_hest_aer_params() LeoLiu-oc
2024-05-08 22:24 ` Bjorn Helgaas
2024-05-09 9:06 ` LeoLiu-oc
2024-07-18 6:24 ` [PATCH v3 0/3] Parse the HEST PCIe AER and set to relevant registers LeoLiu-oc
2024-07-18 6:24 ` [PATCH v3 1/3] ACPI/APEI: Add hest_parse_pcie_aer() LeoLiu-oc
2024-07-18 17:10 ` kernel test robot [this message]
2024-07-18 17:53 ` kernel test robot
2024-07-18 6:24 ` [PATCH v3 2/3] PCI: Add AER bits #defines for PCIe to PCI/PCI-X Bridge LeoLiu-oc
2024-07-18 6:24 ` [PATCH v3 3/3] PCI/ACPI: Add pci_acpi_program_hest_aer_params() LeoLiu-oc
2024-07-19 14:50 ` Yazen Ghannam
2024-07-18 15:46 ` [PATCH v3 0/3] Parse the HEST PCIe AER and set to relevant registers Yazen Ghannam
2024-07-18 16:43 ` Jonathan Cameron
2024-08-01 23:57 ` Bjorn Helgaas
2024-05-08 22:04 ` [PATCH v2 " Bjorn Helgaas
2024-05-09 8:39 ` LeoLiu-oc
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=202407190015.eutiIYQp-lkp@intel.com \
--to=lkp@intel.com \
--cc=CobeChen@zhaoxin.com \
--cc=LeoLiu-oc@zhaoxin.com \
--cc=TimGuo@zhaoxin.com \
--cc=TonyWWang-oc@zhaoxin.com \
--cc=acpica-devel@lists.linux.dev \
--cc=avadhut.naik@amd.com \
--cc=bhelgaas@google.com \
--cc=bp@alien8.de \
--cc=james.morse@arm.com \
--cc=lenb@kernel.org \
--cc=linux-acpi@vger.kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-pci@vger.kernel.org \
--cc=llvm@lists.linux.dev \
--cc=oe-kbuild-all@lists.linux.dev \
--cc=rafael@kernel.org \
--cc=robert.moore@intel.com \
--cc=tony.luck@intel.com \
--cc=yazen.ghannam@amd.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.