Re: [OS-BUILD PATCH] redhat/kernel.spec.template: Fix RHEL systemd-boot-unsigned dependency for

2023-03-06 Thread via Email Bridge
From: Zbigniew Jędrzejewski-Szmek on gitlab.com
https://gitlab.com/cki-project/kernel-ark/-/merge_requests/2341#note_1303014733

The split was pushed into f37-stable today, i.e. it should be available
tomorrow after the next compose.
___
kernel mailing list -- kernel@lists.fedoraproject.org
To unsubscribe send an email to kernel-le...@lists.fedoraproject.org
Fedora Code of Conduct: 
https://docs.fedoraproject.org/en-US/project/code-of-conduct/
List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines
List Archives: 
https://lists.fedoraproject.org/archives/list/kernel@lists.fedoraproject.org
Do not reply to spam, report it: 
https://pagure.io/fedora-infrastructure/new_issue


[OS-BUILD PATCHv7 2/3] kernel.spec.template: Use xz for KABI

2023-03-06 Thread Prarit Bhargava (via Email Bridge)
From: Prarit Bhargava 

kernel.spec.template: Use xz for KABI

Use xz for KABI instead of gzip.  This allows the removal of gzip as a
kernel dependency.

Signed-off-by: Prarit Bhargava 

diff --git a/redhat/kernel.spec.template b/redhat/kernel.spec.template
index blahblah..blahblah 100644
--- a/redhat/kernel.spec.template
+++ b/redhat/kernel.spec.template
@@ -600,7 +600,7 @@ Requires: kernel-modules-core-uname-r = %{KVERREL}
 # List the packages used during the kernel build
 #
 BuildRequires: kmod, bash, coreutils, tar, git-core, which
-BuildRequires: bzip2, xz, findutils, gzip, m4, perl-interpreter, perl-Carp, 
perl-devel, perl-generators, make, diffutils, gawk
+BuildRequires: bzip2, xz, findutils, m4, perl-interpreter, perl-Carp, 
perl-devel, perl-generators, make, diffutils, gawk
 BuildRequires: gcc, binutils, redhat-rpm-config, hmaccalc, bison, flex, gcc-c++
 BuildRequires: net-tools, hostname, bc, elfutils-devel
 BuildRequires: dwarves
@@ -1910,8 +1910,8 @@ BuildKernel() {
 # NOTENOTE: checksums to the rpm metadata provides list.
 # NOTENOTE: if you change the symvers name, update the backend too
 echo " GENERATING kernel ABI metadata "
-gzip -c9 < Module.symvers > $RPM_BUILD_ROOT/boot/symvers-$KernelVer.gz
-cp $RPM_BUILD_ROOT/boot/symvers-$KernelVer.gz 
$RPM_BUILD_ROOT/lib/modules/$KernelVer/symvers.gz
+xz -c9 < Module.symvers > $RPM_BUILD_ROOT/boot/symvers-$KernelVer.xz
+cp $RPM_BUILD_ROOT/boot/symvers-$KernelVer.xz 
$RPM_BUILD_ROOT/lib/modules/$KernelVer/symvers.xz
 
 %if %{with_kabichk}
 echo " kABI checking is enabled in kernel SPEC file. "
@@ -2988,9 +2988,9 @@ fi\
 %endif\
 rm -f 
%{_localstatedir}/lib/rpm-state/%{name}/installing_core_%{KVERREL}%{?1:+%{1}}\
 /bin/kernel-install add %{KVERREL}%{?1:+%{1}} 
/lib/modules/%{KVERREL}%{?1:+%{1}}/vmlinuz || exit $?\
-if [[ ! -e "/boot/symvers-%{KVERREL}%{?1:+%{1}}.gz" ]]; then\
-ln -s "/lib/modules/%{KVERREL}%{?1:+%{1}}/symvers.gz" 
"/boot/symvers-%{KVERREL}%{?1:+%{1}}.gz"\
-command -v restorecon &>/dev/null && restorecon 
"/boot/symvers-%{KVERREL}%{?1:+%{1}}.gz" \
+if [[ ! -e "/boot/symvers-%{KVERREL}%{?1:+%{1}}.xz" ]]; then\
+ln -s "/lib/modules/%{KVERREL}%{?1:+%{1}}/symvers.xz" 
"/boot/symvers-%{KVERREL}%{?1:+%{1}}.xz"\
+command -v restorecon &>/dev/null && restorecon 
"/boot/symvers-%{KVERREL}%{?1:+%{1}}.xz" \
 fi\
 %{nil}
 
@@ -3269,10 +3269,10 @@ fi
 %endif\
 %attr(0600, root, root) /lib/modules/%{KVERREL}%{?3:+%{3}}/System.map\
 %ghost %attr(0600, root, root) /boot/System.map-%{KVERREL}%{?3:+%{3}}\
-/lib/modules/%{KVERREL}%{?3:+%{3}}/symvers.gz\
+/lib/modules/%{KVERREL}%{?3:+%{3}}/symvers.xz\
 /lib/modules/%{KVERREL}%{?3:+%{3}}/config\
 /lib/modules/%{KVERREL}%{?3:+%{3}}/modules.builtin*\
-%ghost %attr(0600, root, root) /boot/symvers-%{KVERREL}%{?3:+%{3}}.gz\
+%ghost %attr(0600, root, root) /boot/symvers-%{KVERREL}%{?3:+%{3}}.xz\
 %ghost %attr(0600, root, root) /boot/initramfs-%{KVERREL}%{?3:+%{3}}.img\
 %ghost %attr(0644, root, root) /boot/config-%{KVERREL}%{?3:+%{3}}\
 %{expand:%%files -f kernel-%{?3:%{3}-}modules-core.list 
%{?3:%{3}-}modules-core}\

--
https://gitlab.com/cki-project/kernel-ark/-/merge_requests/2173
___
kernel mailing list -- kernel@lists.fedoraproject.org
To unsubscribe send an email to kernel-le...@lists.fedoraproject.org
Fedora Code of Conduct: 
https://docs.fedoraproject.org/en-US/project/code-of-conduct/
List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines
List Archives: 
https://lists.fedoraproject.org/archives/list/kernel@lists.fedoraproject.org
Do not reply to spam, report it: 
https://pagure.io/fedora-infrastructure/new_issue


[OS-BUILD PATCHv7 3/3] kernel.spec.template: Add global compression variables

2023-03-06 Thread Prarit Bhargava (via Email Bridge)
From: Prarit Bhargava 

kernel.spec.template: Add global compression variables

Add global compression variables.  'compression' is the compression
utility, and 'compext' is the compression extension.  In the case of xz,
these variables have the same value but that may not always be the
case.

Signed-off-by: Prarit Bhargava 

diff --git a/redhat/kernel.spec.template b/redhat/kernel.spec.template
index blahblah..blahblah 100644
--- a/redhat/kernel.spec.template
+++ b/redhat/kernel.spec.template
@@ -106,8 +106,11 @@ Summary: The Linux kernel
 %global zipmodules 1
 %endif
 
+# Default compression algorithm
+%global compression xz
+%global compext xz
 %if %{zipmodules}
-%global zipsed -e 's/\.ko$/\.ko.xz/'
+%global zipsed -e 's/\.ko$/\.ko.%compext/'
 %endif
 
 %if 0%{?fedora}
@@ -1910,8 +1913,8 @@ BuildKernel() {
 # NOTENOTE: checksums to the rpm metadata provides list.
 # NOTENOTE: if you change the symvers name, update the backend too
 echo " GENERATING kernel ABI metadata "
-xz -c9 < Module.symvers > $RPM_BUILD_ROOT/boot/symvers-$KernelVer.xz
-cp $RPM_BUILD_ROOT/boot/symvers-$KernelVer.xz 
$RPM_BUILD_ROOT/lib/modules/$KernelVer/symvers.xz
+%compression -c9 < Module.symvers > 
$RPM_BUILD_ROOT/boot/symvers-$KernelVer.%compext
+cp $RPM_BUILD_ROOT/boot/symvers-$KernelVer.%compext 
$RPM_BUILD_ROOT/lib/modules/$KernelVer/symvers.%compext
 
 %if %{with_kabichk}
 echo " kABI checking is enabled in kernel SPEC file. "
@@ -2560,7 +2563,7 @@ find Documentation -type d | xargs chmod u+w
   fi \
   if [ "%{zipmodules}" -eq "1" ]; then \
 echo "Compressing kernel modules ..." \
-find $RPM_BUILD_ROOT/lib/modules/ -type f -name '*.ko' | xargs -n 16 
-P${RPM_BUILD_NCPUS} -r xz; \
+find $RPM_BUILD_ROOT/lib/modules/ -type f -name '*.ko' | xargs -n 16 
-P${RPM_BUILD_NCPUS} -r %compression; \
   fi \
 %{nil}
 
@@ -2988,9 +2991,9 @@ fi\
 %endif\
 rm -f 
%{_localstatedir}/lib/rpm-state/%{name}/installing_core_%{KVERREL}%{?1:+%{1}}\
 /bin/kernel-install add %{KVERREL}%{?1:+%{1}} 
/lib/modules/%{KVERREL}%{?1:+%{1}}/vmlinuz || exit $?\
-if [[ ! -e "/boot/symvers-%{KVERREL}%{?1:+%{1}}.xz" ]]; then\
-ln -s "/lib/modules/%{KVERREL}%{?1:+%{1}}/symvers.xz" 
"/boot/symvers-%{KVERREL}%{?1:+%{1}}.xz"\
-command -v restorecon &>/dev/null && restorecon 
"/boot/symvers-%{KVERREL}%{?1:+%{1}}.xz" \
+if [[ ! -e "/boot/symvers-%{KVERREL}%{?1:+%{1}}.%compext" ]]; then\
+ln -s "/lib/modules/%{KVERREL}%{?1:+%{1}}/symvers.%compext" 
"/boot/symvers-%{KVERREL}%{?1:+%{1}}.%compext"\
+command -v restorecon &>/dev/null && restorecon 
"/boot/symvers-%{KVERREL}%{?1:+%{1}}.%compext" \
 fi\
 %{nil}
 
@@ -3269,10 +3272,10 @@ fi
 %endif\
 %attr(0600, root, root) /lib/modules/%{KVERREL}%{?3:+%{3}}/System.map\
 %ghost %attr(0600, root, root) /boot/System.map-%{KVERREL}%{?3:+%{3}}\
-/lib/modules/%{KVERREL}%{?3:+%{3}}/symvers.xz\
+/lib/modules/%{KVERREL}%{?3:+%{3}}/symvers.%compext\
 /lib/modules/%{KVERREL}%{?3:+%{3}}/config\
 /lib/modules/%{KVERREL}%{?3:+%{3}}/modules.builtin*\
-%ghost %attr(0600, root, root) /boot/symvers-%{KVERREL}%{?3:+%{3}}.xz\
+%ghost %attr(0600, root, root) /boot/symvers-%{KVERREL}%{?3:+%{3}}.%compext\
 %ghost %attr(0600, root, root) /boot/initramfs-%{KVERREL}%{?3:+%{3}}.img\
 %ghost %attr(0644, root, root) /boot/config-%{KVERREL}%{?3:+%{3}}\
 %{expand:%%files -f kernel-%{?3:%{3}-}modules-core.list 
%{?3:%{3}-}modules-core}\

--
https://gitlab.com/cki-project/kernel-ark/-/merge_requests/2173
___
kernel mailing list -- kernel@lists.fedoraproject.org
To unsubscribe send an email to kernel-le...@lists.fedoraproject.org
Fedora Code of Conduct: 
https://docs.fedoraproject.org/en-US/project/code-of-conduct/
List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines
List Archives: 
https://lists.fedoraproject.org/archives/list/kernel@lists.fedoraproject.org
Do not reply to spam, report it: 
https://pagure.io/fedora-infrastructure/new_issue


[OS-BUILD PATCHv7 1/3] kernel.spec.template: Remove gzip related aarch64 code

2023-03-06 Thread Prarit Bhargava (via Email Bridge)
From: Prarit Bhargava 

kernel.spec.template: Remove gzip related aarch64 code

With the move to CONFIG_EFI_ZBOOT, the aarch64 gzip code is no longer
necessary and can be removed.

Signed-off-by: Prarit Bhargava 

diff --git a/redhat/kernel.spec.template b/redhat/kernel.spec.template
index blahblah..blahblah 100644
--- a/redhat/kernel.spec.template
+++ b/redhat/kernel.spec.template
@@ -1811,14 +1811,7 @@ BuildKernel() {
 CopyKernel=cp
 fi
 
-# Sign the image if we're using EFI
-# aarch64 kernels are gziped EFI images
-KernelExtension=${KernelImage##*.}
-if [ "$KernelExtension" == "gz" ]; then
-SignImage=${KernelImage%.*}
-else
-SignImage=$KernelImage
-fi
+SignImage=$KernelImage
 
 %ifarch x86_64 aarch64
 %pesign -s -i $SignImage -o vmlinuz.tmp -a %{secureboot_ca_0} -c 
%{secureboot_key_0} -n %{pesign_name_0}
@@ -1841,9 +1834,6 @@ BuildKernel() {
 exit 1
 fi
 mv vmlinuz.signed $SignImage
-if [ "$KernelExtension" == "gz" ]; then
-gzip -f9 $SignImage
-fi
 # signkernel
 %endif
 

--
https://gitlab.com/cki-project/kernel-ark/-/merge_requests/2173
___
kernel mailing list -- kernel@lists.fedoraproject.org
To unsubscribe send an email to kernel-le...@lists.fedoraproject.org
Fedora Code of Conduct: 
https://docs.fedoraproject.org/en-US/project/code-of-conduct/
List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines
List Archives: 
https://lists.fedoraproject.org/archives/list/kernel@lists.fedoraproject.org
Do not reply to spam, report it: 
https://pagure.io/fedora-infrastructure/new_issue


[OS-BUILD PATCHv7 0/3] redhat/kernel.spec.template: Add global compression variables

2023-03-06 Thread Prarit Bhargava (via Email Bridge)
From: Prarit Bhargava on gitlab.com
Merge Request: https://gitlab.com/cki-project/kernel-ark/-/merge_requests/2173

Most of the kernel and its packing is currently xz.  There is one
exception, KABI.  Remove gzip change the KABI symbol compression to xz.

There are other compression algorithms that are becoming more popular.  To
prepare for this change,  add a compression variable and compression file
extension variable.

Signed-off-by: Prarit Bhargava 

---
 redhat/kernel.spec.template |  35 ++-
 1 files changed, 14 insertions(+), 21 deletions(-)
___
kernel mailing list -- kernel@lists.fedoraproject.org
To unsubscribe send an email to kernel-le...@lists.fedoraproject.org
Fedora Code of Conduct: 
https://docs.fedoraproject.org/en-US/project/code-of-conduct/
List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines
List Archives: 
https://lists.fedoraproject.org/archives/list/kernel@lists.fedoraproject.org
Do not reply to spam, report it: 
https://pagure.io/fedora-infrastructure/new_issue


Re: [OS-BUILD PATCHv3] [redhat] Update configs for the 9.2 DRM backport

2023-03-06 Thread Patrick Talbert (via Email Bridge)
From: Patrick Talbert on gitlab.com
https://gitlab.com/cki-project/kernel-ark/-/merge_requests/2152#note_1302582044

@Lyude can you take a look at this one? Thank you.
___
kernel mailing list -- kernel@lists.fedoraproject.org
To unsubscribe send an email to kernel-le...@lists.fedoraproject.org
Fedora Code of Conduct: 
https://docs.fedoraproject.org/en-US/project/code-of-conduct/
List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines
List Archives: 
https://lists.fedoraproject.org/archives/list/kernel@lists.fedoraproject.org
Do not reply to spam, report it: 
https://pagure.io/fedora-infrastructure/new_issue


Re: Building custom kernel using rpmbuild with spec file gives error on cpufreq.h Is it meaningful?

2023-03-06 Thread stan via kernel
On Sun, 5 Mar 2023 21:46:41 -0600
Justin Forbes  wrote:
 
> More detail on this is in
> https://gitlab.com/cki-project/kernel-ark/-/merge_requests/1903 but
> for Fedora, we ship cpufreq.h in kernel-tools, not kernel-headers.

Thanks!
___
kernel mailing list -- kernel@lists.fedoraproject.org
To unsubscribe send an email to kernel-le...@lists.fedoraproject.org
Fedora Code of Conduct: 
https://docs.fedoraproject.org/en-US/project/code-of-conduct/
List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines
List Archives: 
https://lists.fedoraproject.org/archives/list/kernel@lists.fedoraproject.org
Do not reply to spam, report it: 
https://pagure.io/fedora-infrastructure/new_issue


Re: 2023-03-06 @ 17:00 UTC - Fedora 38 Blocker Review Meeting

2023-03-06 Thread Luna Jernberg
Will attend this one today too

On 3/5/23, Adam Williamson  wrote:
> # F37 Blocker Review meeting
> # Date: 2023-03-06
> # Time: 17:00 UTC
> # Location: #fedora-blocker-review on irc.libera.chat
>
> Hi folks! We have 4 proposed Beta blockers, 10 proposed Beta freeze
> exceptions and 7 proposed Final blockers to review, so let's have a
> review meeting.
>
> If you have time this weekend, you can take a look at the proposed or
> accepted blockers before the meeting -  the full lists can be found
> here: https://qa.fedoraproject.org/blockerbugs/ .
>
> Remember, you can also now vote on bugs outside of review meetings! If
> you look at the bug list in the blockerbugs app, you'll see links
> labeled "Vote!" next to all proposed blockers and freeze exceptions.
> Those links take you to tickets where you can vote.
> https://pagure.io/fedora-qa/blocker-review has instructions on how
> exactly you do it. We usually go through the tickets shortly before the
> meeting and apply any clear votes, so the meeting will just cover bugs
> where there wasn't a clear outcome in the ticket voting yet. **THIS
> MEANS IF YOU VOTE NOW, THE MEETING WILL BE SHORTER!**
>
> We'll be evaluating these bugs to see if they violate any of the
> Release Criteria and warrant the blocking of a release if they're not
> fixed. Information on the release criteria for F38 can be found on the
> wiki [0].
>
> For more information about the Blocker and Freeze exception process,
> check out these links:
>  - https://fedoraproject.org/wiki/QA:SOP_blocker_bug_process
>  - https://fedoraproject.org/wiki/QA:SOP_freeze_exception_bug_process
>
> And for those of you who are curious how a Blocker Review Meeting
> works - or how it's supposed to go and you want to run one - check out
> the SOP on the wiki:
>  - https://fedoraproject.org/wiki/QA:SOP_Blocker_Bug_Meeting
>
> Have a good day and see you tomorrow!
>
> [0] https://fedoraproject.org/wiki/Fedora_Release_Criteria
> --
> Adam Williamson (he/him/his)
> Fedora QA
> Fedora Chat: @adamwill:fedora.im | Mastodon: @ad...@fosstodon.org
> https://www.happyassassin.net
>
>
>
> ___
> desktop mailing list -- desk...@lists.fedoraproject.org
> To unsubscribe send an email to desktop-le...@lists.fedoraproject.org
> Fedora Code of Conduct:
> https://docs.fedoraproject.org/en-US/project/code-of-conduct/
> List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines
> List Archives:
> https://lists.fedoraproject.org/archives/list/desk...@lists.fedoraproject.org
> Do not reply to spam, report it:
> https://pagure.io/fedora-infrastructure/new_issue
>
___
kernel mailing list -- kernel@lists.fedoraproject.org
To unsubscribe send an email to kernel-le...@lists.fedoraproject.org
Fedora Code of Conduct: 
https://docs.fedoraproject.org/en-US/project/code-of-conduct/
List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines
List Archives: 
https://lists.fedoraproject.org/archives/list/kernel@lists.fedoraproject.org
Do not reply to spam, report it: 
https://pagure.io/fedora-infrastructure/new_issue


Re: [OS-BUILD PATCH] redhat/configs: CONFIG_HP_ILO location fix

2023-03-06 Thread Patrick Talbert (via Email Bridge)
From: Patrick Talbert on gitlab.com
https://gitlab.com/cki-project/kernel-ark/-/merge_requests/2348#note_1302108151

This is the original MR https://gitlab.com/cki-project/kernel-
ark/-/merge_requests/2009 .

Justin had pointed out the problem but then it was Acked anyway and someone
blindly merged it .

But it still isn't clear if this was meant for just RH or also fedora.
Regardless of the intent I think it is likely fine where it is now. Thank you
for catching this.
___
kernel mailing list -- kernel@lists.fedoraproject.org
To unsubscribe send an email to kernel-le...@lists.fedoraproject.org
Fedora Code of Conduct: 
https://docs.fedoraproject.org/en-US/project/code-of-conduct/
List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines
List Archives: 
https://lists.fedoraproject.org/archives/list/kernel@lists.fedoraproject.org
Do not reply to spam, report it: 
https://pagure.io/fedora-infrastructure/new_issue


Re: [OS-BUILD PATCH] redhat/configs: CONFIG_HP_ILO location fix

2023-03-06 Thread Vladis Dronov (via Email Bridge)
From: Vladis Dronov on gitlab.com
https://gitlab.com/cki-project/kernel-ark/-/merge_requests/2348#note_1302053828

@ptalbert I guess, this is a question to @msalter, if the invention was to
enable HP_ILO in C9S/RHEL only or in Fedora also. I couldn't derive this from
the initial config file placement.
___
kernel mailing list -- kernel@lists.fedoraproject.org
To unsubscribe send an email to kernel-le...@lists.fedoraproject.org
Fedora Code of Conduct: 
https://docs.fedoraproject.org/en-US/project/code-of-conduct/
List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines
List Archives: 
https://lists.fedoraproject.org/archives/list/kernel@lists.fedoraproject.org
Do not reply to spam, report it: 
https://pagure.io/fedora-infrastructure/new_issue


Re: [OS-BUILD PATCHv4] redhat/Makefile: fix default values for dist-brew's DISTRO and DIST

2023-03-06 Thread via Email Bridge
From: Íñigo Huguet on gitlab.com
https://gitlab.com/cki-project/kernel-ark/-/merge_requests/2339#note_1301892968

Fixed, CKI pass now. I'm resolving the thread because the main changes were
already approved, but it was unresolved during the discussion about the self-
tests, probably unintentionally.
___
kernel mailing list -- kernel@lists.fedoraproject.org
To unsubscribe send an email to kernel-le...@lists.fedoraproject.org
Fedora Code of Conduct: 
https://docs.fedoraproject.org/en-US/project/code-of-conduct/
List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines
List Archives: 
https://lists.fedoraproject.org/archives/list/kernel@lists.fedoraproject.org
Do not reply to spam, report it: 
https://pagure.io/fedora-infrastructure/new_issue


Re: [OS-BUILD PATCHv2] fedora: arm: Enable DRM_PANEL_HIMAX_HX8394

2023-03-06 Thread perobins (via Email Bridge)
From: perobins on gitlab.com
https://gitlab.com/cki-project/kernel-ark/-/merge_requests/2351#note_1301801401

LGTM :thumbsup:
___
kernel mailing list -- kernel@lists.fedoraproject.org
To unsubscribe send an email to kernel-le...@lists.fedoraproject.org
Fedora Code of Conduct: 
https://docs.fedoraproject.org/en-US/project/code-of-conduct/
List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines
List Archives: 
https://lists.fedoraproject.org/archives/list/kernel@lists.fedoraproject.org
Do not reply to spam, report it: 
https://pagure.io/fedora-infrastructure/new_issue


Re: [OS-BUILD PATCH] redhat/configs: CONFIG_HP_ILO location fix

2023-03-06 Thread Patrick Talbert (via Email Bridge)
From: Patrick Talbert on gitlab.com
https://gitlab.com/cki-project/kernel-ark/-/merge_requests/2348#note_1301734197

@jmflinuxtx just FYI, I suppose this fix may affect fedora as well.
___
kernel mailing list -- kernel@lists.fedoraproject.org
To unsubscribe send an email to kernel-le...@lists.fedoraproject.org
Fedora Code of Conduct: 
https://docs.fedoraproject.org/en-US/project/code-of-conduct/
List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines
List Archives: 
https://lists.fedoraproject.org/archives/list/kernel@lists.fedoraproject.org
Do not reply to spam, report it: 
https://pagure.io/fedora-infrastructure/new_issue