✅ PASS (3/297 SKIPPED): Test report for 6.0.9-200.fc36 (fedora-36)

2022-11-16 Thread cki-project
Hi, we tested your kernel and here are the results:

Overall result: PASSED
 Merge: OK
   Compile: OK
  Test: OK

Tested-by: CKI Project 

Kernel information:
Brew / Koji Task ID: 94243446

You can find all the details about the test run at
https://datawarehouse.cki-project.org/kcidb/checkouts/60165

One or more kernel tests failed:
We also see the following known issues which are not related to your 
changes:
Issue: Storage block - storage fio numa: Performance comparison: 
min:40535 * 1.15 < max:81259
URL: https://bugzilla.redhat.com/show_bug.cgi?id=2032094
Affected tests:
  x86_64 - Storage - block - storage fio numa
Issue: avc:  denied  { name_bind } for  pid=897864 comm="rpcbind" 
src=63924 scontext=system_u:system_r:rpcbind_t:s0 
tcontext=system_u:object_r:unreserved_port_t:s0 tclass=udp_socket permissive=1
URL: https://bugzilla.redhat.com/show_bug.cgi?id=1983604#c3
Affected tests:
  x86_64 - xfstests - nfsv4.2
Issue: NFS Connectathon: SELinux prevents rpcbind
URL: 
https://gitlab.com/redhat/centos-stream/tests/kernel/kernel-tests/-/issues/1284
Affected tests:
 aarch64 - NFS Connectathon
 ppc64le - NFS Connectathon
Issue: xfstests - _check_xfs_filesystem: filesystem on /dev/nvme0n1p4 
is inconsistent (r)
URL: https://bugzilla.redhat.com/show_bug.cgi?id=1989409
Affected tests:
 aarch64 - xfstests - btrfs



If you find a failure unrelated to your changes, please ask the test maintainer 
to review it.
This will prevent the failures from being incorrectly reported in the future.

Please reply to this email if you have any questions about the tests that we
ran or if you have any suggestions on how to make future tests more effective.

,-.   ,-.
   ( C ) ( K )  Continuous
`-',-.`-'   Kernel
  ( I ) Integration
   `-'
__
___
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: enable ChromeOS ACPI driver

2022-11-16 Thread Justin M. Forbes (via Email Bridge)
From: Justin M. Forbes on gitlab.com
https://gitlab.com/cki-project/kernel-ark/-/merge_requests/2153#note_1175190946

I am not so worried about the common bit, we have a script that consolidates
matching ark and fedora entries into common which is run periodically.
___
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: enable ChromeOS ACPI driver

2022-11-16 Thread pbrobinson (via Email Bridge)
From: pbrobinson on gitlab.com
https://gitlab.com/cki-project/kernel-ark/-/merge_requests/2153#note_1175183655

NAK, you say enable it for x86 yet the commit is actually doing it for
aarch64. There aren't any ACPI aarch64, only x86. Also this is already enabled
in Fedora so probably should do it in common.
___
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 PATCH] redhat/configs: enable ChromeOS ACPI driver

2022-11-16 Thread Mark Langsdorf (via Email Bridge)
From: Mark Langsdorf 

redhat/configs: enable ChromeOS ACPI driver

Provide a device interface for exporting ACPI data on x86 Chromebooks.

Signed-off-by: Mark Langsdorf 

diff --git a/redhat/configs/ark/generic/arm/aarch64/CONFIG_CHROMEOS_ACPI 
b/redhat/configs/ark/generic/arm/aarch64/CONFIG_CHROMEOS_ACPI
new file mode 100644
index blahblah..blahblah 100644
--- /dev/null
+++ b/redhat/configs/ark/generic/arm/aarch64/CONFIG_CHROMEOS_ACPI
@@ -0,0 +1 @@
+CONFIG_CHROMEOS_ACPI=y

--
https://gitlab.com/cki-project/kernel-ark/-/merge_requests/2153
___
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/Makefile: Fix RHJOBS grep warning

2022-11-16 Thread Herton R. Krzesinski (via Email Bridge)
From: Herton R. Krzesinski on gitlab.com
https://gitlab.com/cki-project/kernel-ark/-/merge_requests/2148#note_1174863504

So there is a problem in this expression I think, but it was already an
existing problem before this change.

If you have eg.: ```MAKEFLAGS="-j45"```, be at the beginning or -j being the
only option in the MAKEFLAGS, the expression will not match.

I think the expression need to be changed to: ```grep -Eo "(^|[ ])-j[0-9]*"```
So it matches either at the beginning, or as an option in the middle of other
options with the space.
___
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: Enable CONFIG_EFI_SECRET module

2022-11-16 Thread Lenny Szubowicz (via Email Bridge)
From: Lenny Szubowicz on gitlab.com
https://gitlab.com/cki-project/kernel-ark/-/merge_requests/2124#note_1174703831

@ptalbert you are correct about this MR being completely unnecessary and I
will close it. I don't know how I missed the existing
ark/generic/x86/CONFIG_EFI_SECRET. Thanks for the review.
___
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: Move ark/generic/s390x/CONFIG_ZSMALLOC to common/generic

2022-11-16 Thread Waiman Long (via Email Bridge)
From: Waiman Long on gitlab.com
https://gitlab.com/cki-project/kernel-ark/-/merge_requests/2127#note_1174604596

Yes, it is essentially a noop. Will close this MR. 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: [OS-BUILD PATCHv2] [redhat] Update configs for the 9.2 DRM backport

2022-11-16 Thread Patrick Talbert (via Email Bridge)
From: Patrick Talbert on gitlab.com
https://gitlab.com/cki-project/kernel-ark/-/merge_requests/2152#note_1174515498

@karolherbst Just FYI since your fork is private no pipeline is triggered here
in the parent project. I'll trigger one now but you may want to change your
fork settings so future MRs are more automated.
___
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 PATCHv5] redhat: Force remove tmp file

2022-11-16 Thread Patrick Talbert (via Email Bridge)
From: Patrick Talbert on gitlab.com
https://gitlab.com/cki-project/kernel-ark/-/merge_requests/2135#note_1174381468

I believe all the items brought up in this thread have been addressed so I
mark it resolved.
___
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 PATCHv5] redhat: Force remove tmp file

2022-11-16 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 Bhargava 

diff --git a/redhat/kernel.spec.template b/redhat/kernel.spec.template
index blahblah..blahblah 100755
--- a/redhat/kernel.spec.template
+++ b/redhat/kernel.spec.template
@@ -1683,7 +1683,8 @@ BuildKernel() {
 %endif
 
 # Remove large intermediate files we no longer need to save space
-rm vmlinux.o .tmp_vmlinux.btf
+# (-f required for zfcpdump builds that do not enable BTF)
+rm -f vmlinux.o .tmp_vmlinux.btf
 
 # Start installing the results
 install -m 644 .config $RPM_BUILD_ROOT/boot/config-$KernelVer

--
https://gitlab.com/cki-project/kernel-ark/-/merge_requests/2135
___
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: Force remove tmp file

2022-11-16 Thread Prarit Bhargava (via Email Bridge)
From: Prarit Bhargava on gitlab.com
https://gitlab.com/cki-project/kernel-ark/-/merge_requests/2135#note_1174349020

Oh I didn't.  Thanks for pointing it out.  I'll add a comment about zfcp.
___
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: Enable CONFIG_EFI_SECRET module

2022-11-16 Thread Patrick Talbert (via Email Bridge)
From: Patrick Talbert on gitlab.com
https://gitlab.com/cki-project/kernel-ark/-/merge_requests/2124#note_1174329543

@lszubowi This MR is basically a noop for the kernel-ark project. The
automated comment in redhat/centos-stream/src/kernel/centos-stream-9!1276
should not have been posted and we have now updated the script that does those
checks so that it will not comment in these cases.

kernel-ark already sets `CONFIG_EFI_SECRET=m` under
`ark/generic/x86/CONFIG_EFI_SECRET` so the generated config will be the same
before and after this MR.

So IMHO this MR is not needed and should be closed.
___
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: Move ark/generic/s390x/CONFIG_ZSMALLOC to common/generic

2022-11-16 Thread Patrick Talbert (via Email Bridge)
From: Patrick Talbert on gitlab.com
https://gitlab.com/cki-project/kernel-ark/-/merge_requests/2127#note_1174323682

@llong1 kernel-ark actually sets this config option the same way as your
redhat/centos-stream/src/kernel/centos-stream-9!1557. The only difference is
your centos MR does it under the common/ directory while in kernel-ark the
option is set under the ark/ directory. But the generated setting for
CONFIG_ZSMALLOC will be the same for the rhel flavour under both projects.

We've updated @prarit's script so it is better about detecting these cases and
will no longer post a warning comment.

So really I think this MR can be closed because it is effectively a noop.
___
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: Force remove tmp file

2022-11-16 Thread Patrick Talbert (via Email Bridge)
From: Patrick Talbert on gitlab.com
https://gitlab.com/cki-project/kernel-ark/-/merge_requests/2135#note_1174313270

@prarit did you see the request by @dzickusrh here?
___
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] [redhat] Update configs for the 9.2 DRM backport

2022-11-16 Thread Karol Herbst (via Email Bridge)
From: Karol Herbst on gitlab.com
https://gitlab.com/cki-project/kernel-ark/-/merge_requests/2152#note_1174151786

yeah... I just checked with my actual backport and I wasn't hitting it either,
so I dropped pulling in the other MR
___
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 PATCHv2] [redhat] Update configs for the 9.2 DRM backport

2022-11-16 Thread Karol Herbst (via Email Bridge)
From: Karol Herbst 

[redhat] Update configs for the 9.2 DRM backport

Bugzilla: https://bugzilla.redhat.com/show_bug.cgi?id=2115876

Signed-off-by: Karol Herbst 

diff --git a/redhat/configs/ark/generic/CONFIG_DRM_IMX8QM_LDB 
b/redhat/configs/ark/generic/CONFIG_DRM_IMX8QM_LDB
new file mode 100644
index blahblah..blahblah 100644
--- /dev/null
+++ b/redhat/configs/ark/generic/CONFIG_DRM_IMX8QM_LDB
@@ -0,0 +1 @@
+# CONFIG_DRM_IMX8QM_LDB is not set
diff --git a/redhat/configs/ark/generic/CONFIG_DRM_IMX8QXP_LDB 
b/redhat/configs/ark/generic/CONFIG_DRM_IMX8QXP_LDB
new file mode 100644
index blahblah..blahblah 100644
--- /dev/null
+++ b/redhat/configs/ark/generic/CONFIG_DRM_IMX8QXP_LDB
@@ -0,0 +1 @@
+# CONFIG_DRM_IMX8QXP_LDB is not set
diff --git a/redhat/configs/ark/generic/CONFIG_DRM_IMX8QXP_PIXEL_COMBINER 
b/redhat/configs/ark/generic/CONFIG_DRM_IMX8QXP_PIXEL_COMBINER
new file mode 100644
index blahblah..blahblah 100644
--- /dev/null
+++ b/redhat/configs/ark/generic/CONFIG_DRM_IMX8QXP_PIXEL_COMBINER
@@ -0,0 +1 @@
+# CONFIG_DRM_IMX8QXP_PIXEL_COMBINER is not set
diff --git a/redhat/configs/ark/generic/CONFIG_DRM_IMX8QXP_PIXEL_LINK_TO_DPI 
b/redhat/configs/ark/generic/CONFIG_DRM_IMX8QXP_PIXEL_LINK_TO_DPI
new file mode 100644
index blahblah..blahblah 100644
--- /dev/null
+++ b/redhat/configs/ark/generic/CONFIG_DRM_IMX8QXP_PIXEL_LINK_TO_DPI
@@ -0,0 +1 @@
+# CONFIG_DRM_IMX8QXP_PIXEL_LINK_TO_DPI is not set
diff --git a/redhat/configs/ark/generic/CONFIG_HSA_AMD_P2P 
b/redhat/configs/ark/generic/CONFIG_HSA_AMD_P2P
index blahblah..blahblah 100644
--- a/redhat/configs/ark/generic/CONFIG_HSA_AMD_P2P
+++ b/redhat/configs/ark/generic/CONFIG_HSA_AMD_P2P
@@ -1 +1 @@
-CONFIG_HSA_AMD_P2P=y
+# CONFIG_HSA_AMD_P2P is not set
diff --git a/redhat/configs/ark/generic/CONFIG_INTEL_MEI_GSC 
b/redhat/configs/ark/generic/CONFIG_INTEL_MEI_GSC
deleted file mode 100644
index blahblah..blahblah 0
--- a/redhat/configs/ark/generic/CONFIG_INTEL_MEI_GSC
+++ /dev/null
@@ -1 +0,0 @@
-# CONFIG_INTEL_MEI_GSC is not set
diff --git a/redhat/configs/fedora/generic/x86/CONFIG_INTEL_MEI_GSC 
b/redhat/configs/common/generic/x86/CONFIG_INTEL_MEI_GSC
rename from redhat/configs/fedora/generic/x86/CONFIG_INTEL_MEI_GSC
rename to redhat/configs/common/generic/x86/CONFIG_INTEL_MEI_GSC
index blahblah..blahblah 100644
--- a/redhat/configs/fedora/generic/x86/CONFIG_INTEL_MEI_GSC
+++ b/redhat/configs/common/generic/x86/CONFIG_INTEL_MEI_GSC

--
https://gitlab.com/cki-project/kernel-ark/-/merge_requests/2152
___
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 0/2] [redhat] New configs for the 9.2 DRM backport

2022-11-16 Thread pbrobinson (via Email Bridge)
From: pbrobinson on gitlab.com
https://gitlab.com/cki-project/kernel-ark/-/merge_requests/2152#note_1174146592

The DRM_RCAR_USE_MIPI_DSI option probably doesn't need to be there, we don't
enable ARCH_RENESAS anywhere.
___
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 PATCH 2/2] [redhat] Update configs for the 9.2 DRM backport

2022-11-16 Thread Karol Herbst (via Email Bridge)
From: Karol Herbst 

[redhat] Update configs for the 9.2 DRM backport

Bugzilla: https://bugzilla.redhat.com/show_bug.cgi?id=2115876

Signed-off-by: Karol Herbst 

diff --git a/redhat/configs/ark/generic/CONFIG_DRM_IMX8QM_LDB 
b/redhat/configs/ark/generic/CONFIG_DRM_IMX8QM_LDB
new file mode 100644
index blahblah..blahblah 100644
--- /dev/null
+++ b/redhat/configs/ark/generic/CONFIG_DRM_IMX8QM_LDB
@@ -0,0 +1 @@
+# CONFIG_DRM_IMX8QM_LDB is not set
diff --git a/redhat/configs/ark/generic/CONFIG_DRM_IMX8QXP_LDB 
b/redhat/configs/ark/generic/CONFIG_DRM_IMX8QXP_LDB
new file mode 100644
index blahblah..blahblah 100644
--- /dev/null
+++ b/redhat/configs/ark/generic/CONFIG_DRM_IMX8QXP_LDB
@@ -0,0 +1 @@
+# CONFIG_DRM_IMX8QXP_LDB is not set
diff --git a/redhat/configs/ark/generic/CONFIG_DRM_IMX8QXP_PIXEL_COMBINER 
b/redhat/configs/ark/generic/CONFIG_DRM_IMX8QXP_PIXEL_COMBINER
new file mode 100644
index blahblah..blahblah 100644
--- /dev/null
+++ b/redhat/configs/ark/generic/CONFIG_DRM_IMX8QXP_PIXEL_COMBINER
@@ -0,0 +1 @@
+# CONFIG_DRM_IMX8QXP_PIXEL_COMBINER is not set
diff --git a/redhat/configs/ark/generic/CONFIG_DRM_IMX8QXP_PIXEL_LINK_TO_DPI 
b/redhat/configs/ark/generic/CONFIG_DRM_IMX8QXP_PIXEL_LINK_TO_DPI
new file mode 100644
index blahblah..blahblah 100644
--- /dev/null
+++ b/redhat/configs/ark/generic/CONFIG_DRM_IMX8QXP_PIXEL_LINK_TO_DPI
@@ -0,0 +1 @@
+# CONFIG_DRM_IMX8QXP_PIXEL_LINK_TO_DPI is not set
diff --git a/redhat/configs/ark/generic/CONFIG_HSA_AMD_P2P 
b/redhat/configs/ark/generic/CONFIG_HSA_AMD_P2P
index blahblah..blahblah 100644
--- a/redhat/configs/ark/generic/CONFIG_HSA_AMD_P2P
+++ b/redhat/configs/ark/generic/CONFIG_HSA_AMD_P2P
@@ -1 +1 @@
-CONFIG_HSA_AMD_P2P=y
+# CONFIG_HSA_AMD_P2P is not set
diff --git a/redhat/configs/ark/generic/CONFIG_INTEL_MEI_GSC 
b/redhat/configs/ark/generic/CONFIG_INTEL_MEI_GSC
deleted file mode 100644
index blahblah..blahblah 0
--- a/redhat/configs/ark/generic/CONFIG_INTEL_MEI_GSC
+++ /dev/null
@@ -1 +0,0 @@
-# CONFIG_INTEL_MEI_GSC is not set
diff --git a/redhat/configs/fedora/generic/x86/CONFIG_INTEL_MEI_GSC 
b/redhat/configs/common/generic/x86/CONFIG_INTEL_MEI_GSC
rename from redhat/configs/fedora/generic/x86/CONFIG_INTEL_MEI_GSC
rename to redhat/configs/common/generic/x86/CONFIG_INTEL_MEI_GSC
index blahblah..blahblah 100644
--- a/redhat/configs/fedora/generic/x86/CONFIG_INTEL_MEI_GSC
+++ b/redhat/configs/common/generic/x86/CONFIG_INTEL_MEI_GSC

--
https://gitlab.com/cki-project/kernel-ark/-/merge_requests/2152
___
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 PATCH 1/2] [redhat] New configs in drivers/gpu

2022-11-16 Thread Karol Herbst (via Email Bridge)
From: Fedora Kernel Team 

[redhat] New configs in drivers/gpu

Hi,

As part of the ongoing rebase effort, the following configuration
options need to be reviewed.

As a reminder, the ARK configuration flow involves moving unreviewed
configuration options from the pending directory to the ark directory.
In the diff below, options are removed from the pending directory and
added to the ark hierarchy. The final options that need to be ACKed
are the files that are being added to the ark hierarchy.

If the value for a file that is added should be changed, please reply
with a better option.

 Symbol: DRM_RCAR_USE_MIPI_DSI [=n]
 Type  : bool
 Defined at drivers/gpu/drm/rcar-du/Kconfig:47
   Prompt: R-Car DU MIPI DSI Encoder Support
   Depends on: HAS_IOMEM [=y] && DRM_BRIDGE [=y] && OF [=y]
   Location:
 -> Device Drivers
   -> Graphics support
 -> R-Car DU MIPI DSI Encoder Support (DRM_RCAR_USE_MIPI_DSI [=n])

---

Cc: David Airlie 
Cc: Adam Jackson 
Cc: Lyude Paul 
Cc: "Michel Dänzer" 
Cc: Karol Herbst 
Cc: Ben Skeggs 
Cc: Jocelyn Falempe 
Cc: "Mika Penttilä" 
Signed-off-by: Fedora Kernel Team 

diff --git a/redhat/configs/ark/generic/CONFIG_DRM_RCAR_USE_MIPI_DSI 
b/redhat/configs/ark/generic/CONFIG_DRM_RCAR_USE_MIPI_DSI
new file mode 100644
index blahblah..blahblah 100644
--- /dev/null
+++ b/redhat/configs/ark/generic/CONFIG_DRM_RCAR_USE_MIPI_DSI
@@ -0,0 +1 @@
+# CONFIG_DRM_RCAR_USE_MIPI_DSI is not set
diff --git a/redhat/configs/pending-ark/generic/CONFIG_DRM_RCAR_USE_MIPI_DSI 
b/redhat/configs/pending-ark/generic/CONFIG_DRM_RCAR_USE_MIPI_DSI
deleted file mode 100644
index blahblah..blahblah 0
--- a/redhat/configs/pending-ark/generic/CONFIG_DRM_RCAR_USE_MIPI_DSI
+++ /dev/null
@@ -1,13 +0,0 @@
-# Symbol: DRM_RCAR_USE_MIPI_DSI [=n]
-# Type  : bool
-# Defined at drivers/gpu/drm/rcar-du/Kconfig:47
-#   Prompt: R-Car DU MIPI DSI Encoder Support
-#   Depends on: HAS_IOMEM [=y] && DRM_BRIDGE [=y] && OF [=y]
-#   Location:
-# -> Device Drivers
-#   -> Graphics support
-# -> R-Car DU MIPI DSI Encoder Support (DRM_RCAR_USE_MIPI_DSI [=n])
-# 
-# 
-# 
-# CONFIG_DRM_RCAR_USE_MIPI_DSI is not set

--
https://gitlab.com/cki-project/kernel-ark/-/merge_requests/2152
___
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 PATCH 0/2] [redhat] New configs for the 9.2 DRM backport

2022-11-16 Thread Karol Herbst (via Email Bridge)
From: Karol Herbst on gitlab.com
Merge Request: https://gitlab.com/cki-project/kernel-ark/-/merge_requests/2152

Those I'll need for the DRM backport https://gitlab.com/redhat/centos-
stream/src/kernel/centos-stream-9/-/merge_requests/1395

Depends on https://gitlab.com/cki-project/kernel-ark/-/merge_requests/2145

/cc @ddutile

Also disabled the option for `CONFIG_HSA_AMD_P2P` as with discussed we'll
postpone enabling it until later. I might be wrong though.

---
 redhat/configs/ark/generic/CONFIG_DRM_IMX8QM_LDB   
  |   1 +
 redhat/configs/ark/generic/CONFIG_DRM_IMX8QXP_LDB  
  |   1 +
 redhat/configs/ark/generic/CONFIG_DRM_IMX8QXP_PIXEL_COMBINER   
  |   1 +
 redhat/configs/ark/generic/CONFIG_DRM_IMX8QXP_PIXEL_LINK_TO_DPI
  |   1 +
 redhat/configs/ark/generic/CONFIG_DRM_RCAR_USE_MIPI_DSI
  |   1 +
 redhat/configs/ark/generic/CONFIG_HSA_AMD_P2P  
  |   2 +-
 redhat/configs/ark/generic/CONFIG_INTEL_MEI_GSC
  |   1 -
 redhat/configs/fedora/generic/x86/CONFIG_INTEL_MEI_GSC => 
redhat/configs/common/generic/x86/CONFIG_INTEL_MEI_GSC |   0 
 redhat/configs/pending-ark/generic/CONFIG_DRM_RCAR_USE_MIPI_DSI
  |  13 --
 9 files changed, 6 insertions(+), 15 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