Re: Rework TTMs busy handling

2024-01-16 Thread Zack Rusin
On Tue, Jan 16, 2024 at 4:57 AM Christian König wrote: > > Am 12.01.24 um 13:51 schrieb Christian König: > > Hi guys, > > just a gentle ping on this. > > Zack any more comments for the VMWGFX parts? The new vmwgfx code looks great, thanks a lot for implementing it! In fact the entire series

Re: [Nouveau] Kernel problem with multiseat on one card

2024-01-16 Thread Ilia Mirkin
On Sat, Dec 2, 2023 at 8:18 AM Bagas Sanjaya wrote: > > On Thu, Nov 30, 2023 at 11:48:24AM +0100, Gert Vanhaerents wrote: > > Hi Kernel list, > > I'm the IT person of a school, earlier we used multiseatcomputers for the > > school, i have maded with a XGL implementation and it works fine but not

Re: [PATCH][next] drm/nouveau/fifo/gk104: remove redundant variable ret

2024-01-16 Thread Dan Carpenter
On Tue, Jan 16, 2024 at 11:16:09AM +, Colin Ian King wrote: > The variable ret is being assigned a value but it isn't being > read afterwards. The assignment is redundant and so ret can be > removed. > > Cleans up clang scan build warning: > warning: Although the value stored to 'ret' is used

Re: [REGRESSION]: nouveau: Asynchronous wait on fence

2024-01-16 Thread Owen T. Heisler
On 10/31/23 04:18, Linux regression tracking (Thorsten Leemhuis) wrote: Thanks for your report. With a bit of luck someone will look into this, But I doubt it, as this report has some aspects why it might be ignored. Mainly: (a) the report was about a stable/longterm kernel and (b)it's afaics

AD107M (197), black screen

2024-01-16 Thread Angelo Dureghello
Hi all, i am testing current mainline (6.7.rc8), on a lenovo legion, with AD107M (chipset 197000a1). Looks like somewhere at driver probe, screen turns black and stays forever. If any hint, welcome. I can help debugging, rebuilding and testing in case. Regards, Angelo Dureghello

Re: [REGRESSION]: nouveau: Asynchronous wait on fence

2024-01-16 Thread Thorsten Leemhuis
Karol, Lyude, and Daniel: On 29.11.23 01:37, Owen T. Heisler wrote: > On 11/21/23 14:23, Owen T. Heisler wrote: >> On 11/21/23 09:16, Linux regression tracking (Thorsten Leemhuis) wrote: >>> On 15.11.23 07:19, Owen T. Heisler wrote: On 10/31/23 04:18, Linux regression tracking (Thorsten

Re: [PATCH 10/10] ACPI: IORT: Allow COMPILE_TEST of IORT

2024-01-16 Thread Moritz Fischer
On Tue, Nov 28, 2023 at 08:48:06PM -0400, Jason Gunthorpe wrote: The arm-smmu driver can COMPILE_TEST on x86, so expand this to also enable the IORT code so it can be COMPILE_TEST'd too. Signed-off-by: Jason Gunthorpe --- drivers/acpi/Kconfig| 2 -- drivers/acpi/Makefile | 2

[PATCH] drm/nouveau: svm: fix kvcalloc() arguments order

2024-01-16 Thread Dmitry Antipov
When compiling with gcc version 14.0.0 20231220 (experimental) and W=1, I've noticed the following warning: drivers/gpu/drm/nouveau/nouveau_svm.c: In function 'nouveau_svm_fault_buffer_ctor': drivers/gpu/drm/nouveau/nouveau_svm.c:1014:40: warning: 'kvcalloc' sizes specified with 'sizeof' in the

Re: Kernel problem with multiseat on one card

2024-01-16 Thread Gert Vanhaerents
Hi Kernel list, I'm the IT person of a school, earlier we used multiseatcomputers for the school, i have maded with a XGL implementation and it works fine but not so fantastic. The school wants that i build new computers but the XGL project is too outdated so i can't use it anymore. How

Re: [PATCH v3 3/7] PCI: Drop pci_is_thunderbolt_attached()

2024-01-16 Thread Ilpo Järvinen
On Tue, 14 Nov 2023, Mario Limonciello wrote: > All callers have switched to dev_is_removable() for detecting > hotpluggable PCIe devices. > > Signed-off-by: Mario Limonciello > --- > v2->v3: > * No changes > --- > include/linux/pci.h | 22 -- > 1 file changed, 22

Re: [PATCH v2 5/9] PCI: pciehp: Move check for is_thunderbolt into a quirk

2024-01-16 Thread Ilpo Järvinen
On Fri, 3 Nov 2023, Mario Limonciello wrote: > commit 493fb50e958c ("PCI: pciehp: Assume NoCompl+ for Thunderbolt > ports") added a check into pciehp code to explicitly set NoCompl+ > for all Intel Thunderbolt controllers, including those that don't > need it. > > This overloaded the purpose of

[PATCH] drm/nouveau/fifo: remove duplicated including

2024-01-16 Thread Wang Jinchao
rm second including of chid.h Signed-off-by: Wang Jinchao --- drivers/gpu/drm/nouveau/nvkm/engine/fifo/chan.c | 1 - 1 file changed, 1 deletion(-) diff --git a/drivers/gpu/drm/nouveau/nvkm/engine/fifo/chan.c b/drivers/gpu/drm/nouveau/nvkm/engine/fifo/chan.c index 87a62d4ff4bd..7d4716dcd512

Help identifying still open projects on https://www.x.org/wiki/SummerOfCodeIdeas/

2024-01-16 Thread vivek pandya
Hello Karol and other members! I see that on https://www.x.org/wiki/SummerOfCodeIdeas/ there are lots of compiler related tasks but most of them seem very old. Are they still relevant? Kindly provide some details. Sincerely, Vivek

Driver Nvidia 535

2024-01-16 Thread niepce
you need to translate...sorry Bonjour; j'utilise un Dell G3-15 (intel core i5 9th Gen) & (Nvidia GEforce GTX) Mon OS est Linux Mint 21.2 Victoria (sous Ubuntu 22.04 Jammy Jellyfish ) J'utilise un pilote vidéo générique; mais si je tente d'utiliser le pilote Propriétaire Nvidia 535 mon

Re: [PATCH -next] drm/nouveau: uapi: fix kerneldoc warnings

2024-01-16 Thread Vegard Nossum
On 25/12/2023 08:40, Randy Dunlap wrote: I do see one thing that I don't like in the generated html output. It's not a problem with this patch. The #defines for DRM_NOUVEAU_VM_BIND_OP_MAP etc. have a ';' at the end of each line: struct drm_nouveau_vm_bind_op { __u32 op; #define

[PATCH linux-next v2] drm/nouveau/disp: switch to use kmemdup() helper

2024-01-16 Thread yang.guang5
From: Chen Haonan Use kmemdup() helper instead of open-coding to simplify the code. Signed-off-by: Chen Haonan Reviewed-by: Yang Guang --- drivers/gpu/drm/nouveau/nvif/outp.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/drivers/gpu/drm/nouveau/nvif/outp.c

Re: [PATCH 03/10] iommu/of: Use -ENODEV consistently in of_iommu_configure()

2024-01-16 Thread Moritz Fischer
On Tue, Nov 28, 2023 at 08:47:59PM -0400, Jason Gunthorpe wrote: Instead of returning 1 and trying to handle positive error codes just stick to the convention of returning -ENODEV. Remove references to ops from of_iommu_configure(), a NULL ops will already generate an error code. There is no

[PATCH] drm/nouveau: Removes unnecessary args check in nouveau_uvmm_sm_prepare

2024-01-16 Thread Yuran Pereira
Checking `args` after calling `op_map_prepare` is unnecessary since if `op_map_prepare` was to be called with NULL args, it would lead to a NULL pointer dereference, thus never hitting that check. Hence this check can be removed, and a note added to remind users of this function to ensure that

Re: [PATCH] drm/sched: Convert the GPU scheduler to variable number of run-queues

2024-01-16 Thread Luben Tuikov
On 2023-10-26 12:39, Danilo Krummrich wrote: > On 10/23/23 05:22, Luben Tuikov wrote: >> The GPU scheduler has now a variable number of run-queues, which are set up >> at >> drm_sched_init() time. This way, each driver announces how many run-queues it >> requires (supports) per each GPU scheduler

[PATCH linux-next] drm/nouveau/disp: switch to use kmemdup() helper

2024-01-16 Thread yang.guang5
From: Yang Guang Use kmemdup() helper instead of open-coding to simplify the code. Signed-off-by: Chen Haonan --- drivers/gpu/drm/nouveau/nvif/outp.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/drivers/gpu/drm/nouveau/nvif/outp.c

Re: [PATCH v2 8/9] PCI: Exclude PCIe ports used for tunneling in pcie_bandwidth_available()

2024-01-16 Thread Lazar, Lijo
On 11/4/2023 12:37 AM, Mario Limonciello wrote: The USB4 spec specifies that PCIe ports that are used for tunneling PCIe traffic over USB4 fabric will be hardcoded to advertise 2.5GT/s and behave as a PCIe Gen1 device. The actual performance of these ports is controlled by the fabric

Re: [REGRESSION]: nouveau: Asynchronous wait on fence

2024-01-16 Thread Owen T. Heisler
On 10/31/23 04:18, Linux regression tracking (Thorsten Leemhuis) wrote: On 28.10.23 04:46, Owen T. Heisler wrote: #regzbot introduced: d386a4b54607cf6f76e23815c2c9a3abc1d66882 #regzbot link: https://gitlab.freedesktop.org/drm/nouveau/-/issues/180 ## Problem 1. Connect external display to DVI

Re: [REGRESSION]: acpi/nouveau: Hardware unavailable upon resume or suspend fails

2024-01-16 Thread Owen T. Heisler
Hi everyone, On 11/10/23 06:52, Kai-Heng Feng wrote: On Fri, Nov 10, 2023 at 2:19 PM Hans de Goede wrote: On 11/10/23 07:09, Kai-Heng Feng wrote: On Fri, Nov 10, 2023 at 5:55 AM Owen T. Heisler wrote: #regzbot introduced: 89c290ea758911e660878e26270e084d862c03b0 #regzbot link:

[PATCH] driver: gpu: Fixing warning directly dereferencing a rcu pointer

2024-01-16 Thread Abhinav Singh
This patch fixes a sparse warning with this message "warning:dereference of noderef expression". In this context it means we are dereferencing a __rcu tagged pointer directly. We should not be directly dereferencing a rcu pointer, rather we should be using rcu helper function rcu_dereferece()

[PATCH v2] driver: gpu: Fixing warning directly dereferencing a rcu pointer

2024-01-16 Thread Abhinav Singh
This patch fixes a sparse warning with this message "warning:dereference of noderef expression". In this context it means we are dereferencing a __rcu tagged pointer directly. We should not be directly dereferencing a rcu pointer, rather we should be using rcu helper function rcu_dereferece()

[PATCH] drm/nouveau: Prevents NULL pointer dereference in nouveau_uvmm_sm_prepare

2024-01-16 Thread Yuran Pereira
There are instances where the "args" argument passed to nouveau_uvmm_sm_prepare() is NULL. I.e. when nouveau_uvmm_sm_prepare() is called from nouveau_uvmm_sm_unmap_prepare() ``` static int nouveau_uvmm_sm_unmap_prepare(struct nouveau_uvmm *uvmm, ... { return nouveau_uvmm_sm_prepare(uvmm,

Re: [PATCH v3 1/7] drm/nouveau: Switch from pci_is_thunderbolt_attached() to dev_is_removable()

2024-01-16 Thread Ilpo Järvinen
On Tue, 14 Nov 2023, Mario Limonciello wrote: > pci_is_thunderbolt_attached() looks at the hierarchy of the PCIe device > to determine if any bridge along the way has the is_thunderbolt bit set. > This bit will only be set when one of the devices in the hierarchy is an > Intel Thunderbolt device.

Re: [PATCH v3 7/7] PCI: Exclude PCIe ports used for virtual links in pcie_bandwidth_available()

2024-01-16 Thread Lazar, Lijo
On 11/16/2023 2:39 AM, Mario Limonciello wrote: On 11/15/2023 11:04, Mario Limonciello wrote: On 11/14/2023 21:23, Lazar, Lijo wrote: On 11/15/2023 1:37 AM, Mario Limonciello wrote: The USB4 spec specifies that PCIe ports that are used for tunneling PCIe traffic over USB4 fabric will be

Re: [PATCH v2 8/9] PCI: Exclude PCIe ports used for tunneling in pcie_bandwidth_available()

2024-01-16 Thread Ilpo Järvinen
On Fri, 3 Nov 2023, Mario Limonciello wrote: > The USB4 spec specifies that PCIe ports that are used for tunneling > PCIe traffic over USB4 fabric will be hardcoded to advertise 2.5GT/s and > behave as a PCIe Gen1 device. The actual performance of these ports is > controlled by the fabric

Re: [Nouveau] Kernel problem with multiseat on one card

2024-01-16 Thread Gert Vanhaerents
Op 2/12/2023 om 16:28 schreef Timur Tabi: On Sat, 2023-12-02 at 20:18 +0700, Bagas Sanjaya wrote: When i install the proprietary Nvidia drivers, i have the following: [MASTER] pci::08:00.0      │ ├─/sys/devices/pci:00/:00:03.1/:08:00.0/drm/card0      │ │ [MASTER]

Re: [PATCH v3 7/7] PCI: Exclude PCIe ports used for virtual links in pcie_bandwidth_available()

2024-01-16 Thread Lazar, Lijo
On 11/15/2023 1:37 AM, Mario Limonciello wrote: The USB4 spec specifies that PCIe ports that are used for tunneling PCIe traffic over USB4 fabric will be hardcoded to advertise 2.5GT/s and behave as a PCIe Gen1 device. The actual performance of these ports is controlled by the fabric

Re: [Nouveau] Kernel problem with multiseat on one card

2024-01-16 Thread Gert Vanhaerents
Op 4/12/2023 om 9:51 schreef Gert Vanhaerents: Op 2/12/2023 om 16:28 schreef Timur Tabi: On Sat, 2023-12-02 at 20:18 +0700, Bagas Sanjaya wrote: When i install the

Re: [PATCH v3 4/7] PCI: pciehp: Move check for is_thunderbolt into a quirk

2024-01-16 Thread Ilpo Järvinen
On Tue, 14 Nov 2023, Mario Limonciello wrote: > commit 493fb50e958c ("PCI: pciehp: Assume NoCompl+ for Thunderbolt > ports") added a check into pciehp code to explicitly set NoCompl+ > for all Intel Thunderbolt controllers, including those that don't > need it. > > This overloaded the purpose of

Re: [PATCH] drm/sched: Convert the GPU scheduler to variable number of run-queues

2024-01-16 Thread Luben Tuikov
Hi, I've pushed this commit as I got a verbal Acked-by from Christian in our kernel meeting this morning. Matt, please rebase your patches to drm-misc-next. Regards, Luben On 2023-10-26 11:20, Luben Tuikov wrote: > Ping! > > On 2023-10-22 23:22, Luben Tuikov wrote: >> The GPU scheduler has

[PATCH -next] drm/nouveau: uapi: fix kerneldoc warnings

2024-01-16 Thread Vegard Nossum
As of commit b77fdd6a48e6 ("scripts/kernel-doc: restore warning for Excess struct/union"), we see the following warnings when running 'make htmldocs': ./include/uapi/drm/nouveau_drm.h:292: warning: Excess struct member 'DRM_NOUVEAU_VM_BIND_OP_MAP' description in 'drm_nouveau_vm_bind_op'

[PATCH] driver: gpu: Fix warning directly dereferencing a rcu pointer

2024-01-16 Thread Abhinav Singh
Fix a sparse warning with this message "warning:dereference of noderef expression". In this context it means we are dereferencing a __rcu tagged pointer directly. We should not be directly dereferencing a rcu pointer. To get a normal (non __rcu tagged pointer) from a __rcu tagged pointer we are

Re: [PATCH v2 2/9] drm/radeon: Switch from pci_is_thunderbolt_attached() to dev_is_removable()

2024-01-16 Thread Ilpo Järvinen
On Fri, 3 Nov 2023, Mario Limonciello wrote: > pci_is_thunderbolt_attached() only works for Intel TBT devices. Switch to > using dev_is_removable() to be able to detect USB4 devices as well. Same here as with 1/9. -- i. > Signed-off-by: Mario Limonciello > --- >

Re: [PATCH] driver: gpu: Fix warning directly dereferencing a rcu pointer

2024-01-16 Thread Abhinav Singh
On 11/30/23 05:22, Danilo Krummrich wrote: Hi Abhinav, Thanks for sending this follow-up patch. On 11/26/23 15:57, Abhinav Singh wrote: Fix a sparse warning with this message "warning:dereference of noderef expression". In this context it means we are dereferencing a __rcu tagged pointer

Re: [PATCH v2 3/9] PCI: Drop pci_is_thunderbolt_attached()

2024-01-16 Thread Ilpo Järvinen
On Fri, 3 Nov 2023, Mario Limonciello wrote: > All callers have switched to dev_is_removable() for detecting > hotpluggable PCIe devices. > > Signed-off-by: Mario Limonciello > --- > include/linux/pci.h | 22 -- > 1 file changed, 22 deletions(-) > > diff --git

Re: [PATCH v2] driver: gpu: Fixing warning directly dereferencing a rcu pointer

2024-01-16 Thread Abhinav Singh
On 11/14/23 00:19, Danilo Krummrich wrote: Hi, thanks for sending a v2. On 11/13/23 19:42, Abhinav Singh wrote: This patch fixes a sparse warning with this message "warning:dereference of noderef expression". In this context it means we are dereferencing a __rcu tagged pointer directly.

Re: [PATCH v3] driver: gpu: Fixing warning directly dereferencing a rcu pointer

2024-01-16 Thread Abhinav Singh
On 11/14/23 00:43, Abhinav Singh wrote: This patch fixes a sparse warning with this message "warning:dereference of noderef expression". In this context it means we are dereferencing a __rcu tagged pointer directly. We should not be directly dereferencing a rcu pointer. To get a normal (non

Re: [PATCH v3] driver: gpu: Fixing warning directly dereferencing a rcu pointer

2024-01-16 Thread Abhinav Singh
On 11/21/23 06:50, Danilo Krummrich wrote: On 11/13/23 20:13, Abhinav Singh wrote: This patch fixes a sparse warning with this message "warning:dereference of noderef expression". In this context it means we are dereferencing a __rcu tagged pointer directly. We should not be directly

Re: [PATCH 2/4] drm/ttm: replace busy placement with flags v4

2024-01-16 Thread Zack Rusin
On Thu, Jan 4, 2024 at 10:05 AM Christian König wrote: > > From: Somalapuram Amaranath > > Instead of a list of separate busy placement add flags which indicate > that a placement should only be used when there is room or if we need to > evict. > > v2: add missing TTM_PL_FLAG_IDLE for i915 > v3:

Re: [PATCH 3/5] drm/ttm: replace busy placement with flags v5

2024-01-16 Thread Zack Rusin
On Tue, Jan 9, 2024 at 2:47 AM Christian König wrote: > > From: Somalapuram Amaranath > > Instead of a list of separate busy placement add flags which indicate > that a placement should only be used when there is room or if we need to > evict. > > v2: add missing TTM_PL_FLAG_IDLE for i915 > v3:

Re: [PATCH] drm/sched: Convert the GPU scheduler to variable number of run-queues

2024-01-16 Thread Luben Tuikov
On 2023-10-31 09:33, Danilo Krummrich wrote: > > On 10/26/23 19:25, Luben Tuikov wrote: >> On 2023-10-26 12:39, Danilo Krummrich wrote: >>> On 10/23/23 05:22, Luben Tuikov wrote: The GPU scheduler has now a variable number of run-queues, which are set up at drm_sched_init() time.

Re: [PATCH v3 6/7] PCI: Split up some logic in pcie_bandwidth_available() to separate function

2024-01-16 Thread Ilpo Järvinen
On Tue, 14 Nov 2023, Mario Limonciello wrote: > The logic to calculate bandwidth limits may be used at multiple call sites > so split it up into its own static function instead. > > No intended functional changes. > > Suggested-by: Ilpo Järvinen > Signed-off-by: Mario Limonciello > --- >

Re: [Nouveau] Kernel problem with multiseat on one card - Wil be more than one window manager on one card

2024-01-16 Thread Gert Vanhaerents
Op 4/12/2023 om 15:11 schreef Timur Tabi: On Mon, 2023-12-04 at 09:51 +0100, Gert Vanhaerents wrote: OK  i will report it to nvidia. But with the nouveau drivers it's also not working. Are you sure it's not a kernel problem? Because according to systemd it would be a kernel problem. 

Re: [PATCH] drm/nouveau: Prevents NULL pointer dereference in nouveau_uvmm_sm_prepare

2024-01-16 Thread Yuran Pereira
Hello Danilo, On Tue, Nov 14, 2023 at 05:23:59PM +0100, Danilo Krummrich wrote: > Hi Yuran, > > op_map_prepare() can't be called with `args` being NULL, since when called > through nouveau_uvmm_sm_unmap_prepare() we can't hit the DRM_GPUVA_OP_MAP > case at all. > > Unmapping something never

[REGRESSION]: acpi/nouveau: Hardware unavailable upon resume or suspend fails

2024-01-16 Thread Owen T. Heisler
#regzbot introduced: 89c290ea758911e660878e26270e084d862c03b0 #regzbot link: https://gitlab.freedesktop.org/drm/nouveau/-/issues/273 #regzbot link: https://bugzilla.kernel.org/show_bug.cgi?id=218124 ## Reproducing 1. Boot system to framebuffer console. 2. Run `systemctl suspend`. If undocked

Re: [Nouveau] [PATCH 3/3] nouveau/gsp: add some basic registry entries.

2024-01-16 Thread Timur Tabi
On Tue, Oct 31, 2023 at 12:20 AM Dave Airlie wrote: > +#define NV_GSP_REG_NUM_ENTRIES 2 > + > +static const struct nv_gsp_registry_entries > r535_registry_entries[NV_GSP_REG_NUM_ENTRIES] = { > + { "RMSecBusResetEnable", 1 }, > + { "RMForcePcieConfigSave", 1 }, > +}; How about :

[PATCH v3] driver: gpu: Fixing warning directly dereferencing a rcu pointer

2024-01-16 Thread Abhinav Singh
This patch fixes a sparse warning with this message "warning:dereference of noderef expression". In this context it means we are dereferencing a __rcu tagged pointer directly. We should not be directly dereferencing a rcu pointer. To get a normal (non __rcu tagged pointer) from a __rcu tagged

Re: Kernel problem with multiseat on one card

2024-01-16 Thread Gert Vanhaerents
Op 2/12/2023 om 14:18 schreef Bagas Sanjaya: On Thu, Nov 30, 2023 at 11:48:24AM +0100, Gert Vanhaerents wrote: Hi Kernel list, I'm the IT person of a school, earlier we used multiseatcomputers for the school, i have maded with a XGL implementation and it works fine but not so fantastic. The

[REGRESSION]: nouveau: Asynchronous wait on fence

2024-01-16 Thread Owen T. Heisler
#regzbot introduced: d386a4b54607cf6f76e23815c2c9a3abc1d66882 #regzbot link: https://gitlab.freedesktop.org/drm/nouveau/-/issues/180 ## Problem 1. Connect external display to DVI port on dock and run X with both displays in use. 2. Wait hours or days. 3. Suddenly the secondary

[PATCH v2] drivers: gpu: Fixing warning directly dereferencing a rcu pointer v2

2024-01-16 Thread Abhinav Singh
This patch fixes a sparse warning with this message "warning:dereference of noderef expression". In this context it means we are dereferencing a __rcu tagged pointer directly. We should not be directly dereferencing a rcu pointer, rather we should be using rcu helper function rcu_dereferece()

Re: [PATCH v2 1/9] drm/nouveau: Switch from pci_is_thunderbolt_attached() to dev_is_removable()

2024-01-16 Thread Ilpo Järvinen
On Fri, 3 Nov 2023, Mario Limonciello wrote: > pci_is_thunderbolt_attached() only works for Intel TBT devices. Switch to > using dev_is_removable() to be able to detect USB4 devices as well. Please extend this with more details. I had to lookup the TBT change to be able to make any guess why

Re: [PATCH 10/10] ACPI: IORT: Allow COMPILE_TEST of IORT

2024-01-16 Thread Lorenzo Pieralisi
On Tue, Nov 28, 2023 at 08:48:06PM -0400, Jason Gunthorpe wrote: > The arm-smmu driver can COMPILE_TEST on x86, so expand this to also > enable the IORT code so it can be COMPILE_TEST'd too. > > Signed-off-by: Jason Gunthorpe > --- > drivers/acpi/Kconfig| 2 -- > drivers/acpi/Makefile

[PATCH][next] drm/nouveau/fifo/gk104: remove redundant variable ret

2024-01-16 Thread Colin Ian King
The variable ret is being assigned a value but it isn't being read afterwards. The assignment is redundant and so ret can be removed. Cleans up clang scan build warning: warning: Although the value stored to 'ret' is used in the enclosing expression, the value is never actually read from 'ret'

Re: Rework TTMs busy handling

2024-01-16 Thread Christian König
Am 12.01.24 um 13:51 schrieb Christian König: Hi guys, just a gentle ping on this. Zack any more comments for the VMWGFX parts? Thanks, Christian. same as the last time. Things I've changed: Implemented the requirements from Zack to correctly fill in the busy placements for VMWGFX.