Re: [OS-BUILD PATCH] redhat: Enable support for SN2201 system

2022-11-07 Thread pbrobinson (via Email Bridge)
From: pbrobinson on gitlab.com https://gitlab.com/cki-project/kernel-ark/-/merge_requests/2136#note_1163208877 Why is this driver being enabled everywhere? From the Kconfig: "The processor used on SN2201 is Intel Atom®Processor C Series, C3338R which is one of the Denverton product families." So

Re: [OS-BUILD PATCH] redhat: Enable WWAN feature and support for Intel, Qualcomm and Mediatek devices

2022-11-07 Thread pbrobinson (via Email Bridge)
From: pbrobinson on gitlab.com https://gitlab.com/cki-project/kernel-ark/-/merge_requests/2133#note_1163205670 LGTM ___ kernel mailing list -- kernel@lists.fedoraproject.org To unsubscribe send an email to kernel-le...@lists.fedoraproject.org Fedora Code

Re: [OS-BUILD PATCHv2] redhat: Force remove tmp file

2022-11-07 Thread Herton R. Krzesinski (via Email Bridge)
From: Herton R. Krzesinski on gitlab.com https://gitlab.com/cki-project/kernel-ark/-/merge_requests/2135#note_1163073892 I see. But I mean you could have folded it in just one line: ```rm -f vmlinux.o .tmp_vmlinux.btf``` ___ kernel mailing list -- kernel

Re: [OS-BUILD PATCHv2] redhat: Force remove tmp file

2022-11-07 Thread Prarit Bhargava (via Email Bridge)
From: Prarit Bhargava on gitlab.com https://gitlab.com/cki-project/kernel-ark/-/merge_requests/2135#note_1163059065 Resolve thread. ___ kernel mailing list -- kernel@lists.fedoraproject.org To unsubscribe send an email to kernel-le...@lists.fedoraproject

Re: [OS-BUILD PATCHv2] redhat: Force remove tmp file

2022-11-07 Thread Prarit Bhargava (via Email Bridge)
From: Prarit Bhargava on gitlab.com https://gitlab.com/cki-project/kernel-ark/-/merge_requests/2135#note_1163058937 Fixed. ___ kernel mailing list -- kernel@lists.fedoraproject.org To unsubscribe send an email to kernel-le...@lists.fedoraproject.org Fedo

[OS-BUILD PATCHv2] redhat: Force remove tmp file

2022-11-07 Thread Prarit Bhargava (via Email Bridge)
From: Prarit Bhargava redhat: Force remove tmp file If BTF is not enabled in the kernel config then .tmp_vmlinux.btf will not exist. The rpm build will throw an error because the file doesn't exist. Use 'rm -f' to delete the .tmp_vmlinux.btf file. Reported by: stan Signed-off-by: Prarit Bhar

[OS-BUILD PATCH] fs: fix leaked psi pressure state

2022-11-07 Thread Justin M. Forbes (via Email Bridge)
From: Johannes Weiner fs: fix leaked psi pressure state When psi annotations were added to to btrfs compression reads, the psi state tracking over add_ra_bio_pages and btrfs_submit_compressed_read was faulty. A pressure state, once entered, is never left. This results in incorrectly elevated p

Re: [OS-BUILD PATCH] redhat: Test tmp file before deleting

2022-11-07 Thread Herton R. Krzesinski (via Email Bridge)
From: Herton R. Krzesinski on gitlab.com https://gitlab.com/cki-project/kernel-ark/-/merge_requests/2135#note_1162936472 Wouldn't it be better to just use ```rm -f``` instead of adding the if? ___ kernel mailing list -- kernel@lists.fedoraproject.org To

[OS-BUILD PATCH] redhat: Enable support for SN2201 system

2022-11-07 Thread Ivan Vecera (via Email Bridge)
From: Ivan Vecera redhat: Enable support for SN2201 system Enable support for platform devices used on Nvidia SN2201 switch system. Signed-off-by: Ivan Vecera diff --git a/redhat/configs/common/generic/CONFIG_NVSW_SN2201 b/redhat/configs/common/generic/CONFIG_NVSW_SN2201 index blahblah..blah

[OS-BUILD PATCH] redhat: Test tmp file before deleting

2022-11-07 Thread Prarit Bhargava (via Email Bridge)
From: Prarit Bhargava redhat: Test tmp file before deleting If BTF is not enabled in the kernel config then .tmp_vmlinux.btf will not exist. The rpm build will throw an error because the file doesn't exist. Test for the existence of .tmp_vmlinux.btf before deleting it. Reported by: stan Sign

Re: Possible error in the 6.1 rc3 kernel spec file

2022-11-07 Thread Prarit Bhargava
On 11/7/22 09:57, stan via kernel wrote: Hi, I built the 6.1 rc3 kernel over the weekend, and on the first build it failed. The error was this line in the spec file: # Remove large intermediate files we no longer need to save space # rm vmlinux.o .tmp_vmlinux.btf The error was that the

Re: Possible error in the 6.1 rc3 kernel spec file

2022-11-07 Thread Prarit Bhargava
On 11/7/22 09:57, stan via kernel wrote: Hi, I built the 6.1 rc3 kernel over the weekend, and on the first build it failed. The error was this line in the spec file: # Remove large intermediate files we no longer need to save space # rm vmlinux.o .tmp_vmlinux.btf The error was that the

[OS-BUILD PATCH] configs: enable CONFIG_LRU_GEN_ENABLED everywhere

2022-11-07 Thread Patrick Talbert (via Email Bridge)
From: Patrick Talbert configs: enable CONFIG_LRU_GEN_ENABLED everywhere This should have been enabled in !2089. Signed-off-by: Patrick Talbert diff --git a/redhat/configs/ark/generic/CONFIG_LRU_GEN_ENABLED b/redhat/configs/ark/generic/CONFIG_LRU_GEN_ENABLED deleted file mode 100644 index bla

Possible error in the 6.1 rc3 kernel spec file

2022-11-07 Thread stan via kernel
Hi, I built the 6.1 rc3 kernel over the weekend, and on the first build it failed. The error was this line in the spec file: # Remove large intermediate files we no longer need to save space # rm vmlinux.o .tmp_vmlinux.btf The error was that the [a path in tmp I don't remember]/.tmp_vmlinu

Re: [OS-BUILD PATCH] redhat/configs: Enable CONFIG_EFI_SECRET module

2022-11-07 Thread Justin M. Forbes (via Email Bridge)
From: Justin M. Forbes on gitlab.com https://gitlab.com/cki-project/kernel-ark/-/merge_requests/2124#note_1162434713 Not until upstream changes (I expect them to, but it hasn't happened yet): ``` config EFI_SECRET tristate "EFI secret area securityfs support" depends on EFI && X86

Re: [OS-BUILD PATCH] redhat/configs: Enable CONFIG_EFI_SECRET module

2022-11-07 Thread pbrobinson (via Email Bridge)
From: pbrobinson on gitlab.com https://gitlab.com/cki-project/kernel-ark/-/merge_requests/2124#note_1162383857 It would only have the effect of turning it on for ark/aarch64 which we should be doing, but it should clean up the others in the process. ___

Re: [OS-BUILD PATCH] redhat/configs: Enable CONFIG_EFI_SECRET module

2022-11-07 Thread Justin M. Forbes (via Email Bridge)
From: Justin M. Forbes on gitlab.com https://gitlab.com/cki-project/kernel-ark/-/merge_requests/2124#note_1162366072 I am not quite sure the purpose of this MR. The config option is already turned on in RHEL and in Fedora, though in different places. ``` cat redhat/configs/ark/generic/x86/CONFIG_

[OS-BUILD PATCH] redhat: Enable WWAN feature and support for Intel, Qualcomm and Mediatek devices

2022-11-07 Thread via Email Bridge
From: Jose Ignacio Tornos Martinez redhat: Enable WWAN feature and support for Intel, Qualcomm and Mediatek devices Add configs to enable WWAN feature and support for Intel, Qualcomm and Mediatek devices. Besides, WWAN hwsim feature has been added because it is very helpful for testing purposes

Re: [OS-BUILD PATCHv5] redhat/configs: Disable fbdev drivers and use simpledrm everywhere

2022-11-07 Thread Patrick Talbert (via Email Bridge)
From: Patrick Talbert on gitlab.com https://gitlab.com/cki-project/kernel-ark/-/merge_requests/1533#note_1162124009 Thank you Lyude! @jmflinuxtx we need you too 🤦. ___ kernel mailing list -- kernel@lists.fedoraproject.org To unsubscribe send an email to

Re: [OS-BUILD PATCH] redhat/configs: Move ark/generic/s390x/CONFIG_ZSMALLOC to common/generic

2022-11-07 Thread Patrick Talbert (via Email Bridge)
From: Patrick Talbert on gitlab.com https://gitlab.com/cki-project/kernel-ark/-/merge_requests/2127#note_1162096129 /block ___ kernel mailing list -- kernel@lists.fedoraproject.org To unsubscribe send an email to kernel-le...@lists.fedoraproject.org Fedo