messages from 2025-09-26 18:03:41 to 2025-10-05 09:54:28 UTC [more...]
[PATCH v2 00/19 5.15.y] Backport minmax.h updates from v6.17-rc7
2025-10-03 13:00 UTC (6+ messages)
` [PATCH v2 01/19 5.15.y] minmax: add in_range() macro
` [PATCH v2 03/19 5.15.y] minmax: deduplicate __unconst_integer_typeof()
` [PATCH v2 09/19 5.15.y] minmax: don't use max() in situations that want a C constant expression
` [PATCH v2 10/19 5.15.y] minmax: simplify min()/max()/clamp() implementation
` [PATCH v2 13/19 5.15.y] minmax.h: add whitespace around operators and after commas
[PATCH] drm/amd/pm: Disable VCN queue reset on SMU v13.0.6 due to regression
2025-10-05 1:34 UTC
[PATCH v7 1/3] drm/buddy: Optimize free block management with RB tree
2025-10-04 8:30 UTC (7+ messages)
` [PATCH v7 2/3] drm/buddy: Separate clear and dirty free block trees
` [PATCH v7 3/3] drm/buddy: Add KUnit tests for allocator performance under fragmentation
[PATCH v3] drm/amdgpu: use GPU_HDP_FLUSH for sriov
2025-10-04 6:30 UTC
[PATCH] drm/amdkfd: Fix svm_bo and vram page refcount
2025-10-03 22:16 UTC (9+ messages)
[PATCH v2 1/3] drm/amdgpu: svm check hmm range kzalloc return NULL
2025-10-03 21:46 UTC (11+ messages)
` [PATCH v2 2/3] drm/amdkfd: svm unmap use page aligned address
` [PATCH v2 3/3] drm/amdkfd: Don't stuck in svm restore worker
[PATCH] Revert "drm/amdgpu: revert to old status lock handling v3"
2025-10-03 20:37 UTC
[Patch v2 1/2] drm/amdgpu: use user provided hmm_range buffer in amdgpu_ttm_tt_get_user_pages
2025-10-03 20:23 UTC (6+ messages)
[PATCH] drm/amdkfd: Fix two comments in kfd_ioctl.h
2025-10-03 20:20 UTC (3+ messages)
[PATCH] drm/amdgpu: fix handling of harvesting for ip_discovery firmware
2025-10-03 20:15 UTC (2+ messages)
[PATCH 1/3] drm/amdgpu: svm check hmm range kzalloc return NULL
2025-10-03 15:39 UTC (8+ messages)
` [PATCH 2/3] drm/amdkfd: svm unmap use page aligned address
` [PATCH 3/3] drm/amdkfd: Don't stuck in svm restore worker
[RFC v2 0/5] Improving the worst case TTM large allocation latency
2025-10-03 13:58 UTC (6+ messages)
` [RFC v2 1/5] drm/ttm: Add getter for some pool properties
` [RFC v2 2/5] drm/ttm: Replace multiple booleans with flags in pool init
` [RFC v2 3/5] drm/ttm: Replace multiple booleans with flags in device init
` [RFC v2 4/5] drm/ttm: Allow drivers to specify maximum beneficial TTM pool size
` [RFC v2 5/5] drm/amdgpu: Configure max beneficial TTM pool allocation order
[PATCH v4 00/11 6.1.y] Backport minmax.h updates from v6.17-rc7
2025-10-03 12:15 UTC (12+ messages)
` [PATCH v4 01/11 6.1.y] minmax: don't use max() in situations that want a C constant expression
` [PATCH v4 02/11 6.1.y] minmax: simplify min()/max()/clamp() implementation
` [PATCH v4 03/11 6.1.y] minmax: improve macro expansion and type checking
` [PATCH v4 04/11 6.1.y] minmax: fix up min3() and max3() too
` [PATCH v4 05/11 6.1.y] minmax.h: add whitespace around operators and after commas
` [PATCH v4 06/11 6.1.y] minmax.h: update some comments
` [PATCH v4 07/11 6.1.y] minmax.h: reduce the #define expansion of min(), max() and clamp()
` [PATCH v4 08/11 6.1.y] minmax.h: use BUILD_BUG_ON_MSG() for the lo < hi test in clamp()
` [PATCH v4 09/11 6.1.y] minmax.h: move all the clamp() definitions after the min/max() ones
` [PATCH v4 10/11 6.1.y] minmax.h: simplify the variants of clamp()
` [PATCH v4 11/11 6.1.y] minmax.h: remove some #defines that are only expanded once
[PATCH] drm/amd: Drop superfluous call to set_power_limit()
2025-10-03 8:36 UTC (2+ messages)
[PATCH 0/3] Adjustment to power limit setting
2025-10-03 8:32 UTC (5+ messages)
` [PATCH 1/3] drm/amd: Remove some unncessary header includes
` [PATCH 2/3] drm/amd: Stop overloading power limit with limit type
` [PATCH 3/3] drm/amd: Drop calls to restore power limit and clock from smu_resume()
[PATCH 00/19 5.15.y] Backport minmax.h updates from v6.17-rc7
2025-10-02 20:47 UTC (20+ messages)
` [PATCH 01/19 5.15.y] minmax: add in_range() macro
` [PATCH 02/19 5.15.y] minmax: Introduce {min,max}_array()
` [PATCH 03/19 5.15.y] minmax: deduplicate __unconst_integer_typeof()
` [PATCH 04/19 5.15.y] minmax: fix indentation of __cmp_once() and __clamp_once()
` [PATCH 05/19 5.15.y] minmax: avoid overly complicated constant expressions in VM code
` [PATCH 06/19 5.15.y] minmax: make generic MIN() and MAX() macros available everywhere
` [PATCH 07/19 5.15.y] minmax: add a few more MIN_T/MAX_T users
` [PATCH 08/19 5.15.y] minmax: simplify and clarify min_t()/max_t() implementation
` [PATCH 09/19 5.15.y] minmax: simplify min()/max()/clamp() implementation
` [PATCH 10/19 5.15.y] minmax: don't use max() in situations that want a C constant expression
` [PATCH 11/19 5.15.y] minmax: improve macro expansion and type checking
` [PATCH 12/19 5.15.y] minmax: fix up min3() and max3() too
` [PATCH 13/19 5.15.y] minmax.h: add whitespace around operators and after commas
` [PATCH 14/19 5.15.y] minmax.h: update some comments
` [PATCH 15/19 5.15.y] minmax.h: reduce the #define expansion of min(), max() and clamp()
` [PATCH 16/19 5.15.y] minmax.h: use BUILD_BUG_ON_MSG() for the lo < hi test in clamp()
` [PATCH 17/19 5.15.y] minmax.h: move all the clamp() definitions after the min/max() ones
` [PATCH 18/19 5.15.y] minmax.h: simplify the variants of clamp()
` [PATCH 19/19 5.15.y] minmax.h: remove some #defines that are only expanded once
[PATCH v3 00/11 6.1.y] Backport minmax.h updates from v6.17-rc7
2025-10-02 18:00 UTC (12+ messages)
` [PATCH v3 01/11 6.1.y] minmax: simplify min()/max()/clamp() implementation
` [PATCH v3 02/11 6.1.y] minmax: don't use max() in situations that want a C constant expression
` [PATCH v3 03/11 6.1.y] minmax: improve macro expansion and type checking
` [PATCH v3 04/11 6.1.y] minmax: fix up min3() and max3() too
` [PATCH v3 05/11 6.1.y] minmax.h: add whitespace around operators and after commas
` [PATCH v3 06/11 6.1.y] minmax.h: update some comments
` [PATCH v3 07/11 6.1.y] minmax.h: reduce the #define expansion of min(), max() and clamp()
` [PATCH v3 08/11 6.1.y] minmax.h: use BUILD_BUG_ON_MSG() for the lo < hi test in clamp()
` [PATCH v3 09/11 6.1.y] minmax.h: move all the clamp() definitions after the min/max() ones
` [PATCH v3 10/11 6.1.y] minmax.h: simplify the variants of clamp()
` [PATCH v3 11/11 6.1.y] minmax.h: remove some #defines that are only expanded once
[PATCH 05/19 v6.1.y] minmax: avoid overly complicated constant expressions in VM code
2025-09-29 13:56 UTC (2+ messages)
` Patch "minmax: avoid overly complicated constant expressions in VM code" has been added to the 6.1-stable tree
[PATCH 00/19 v6.1.y] Backport minmax.h updates from v6.17-rc7
2025-09-29 18:39 UTC (7+ messages)
` [PATCH 07/19 v6.1.y] minmax: make generic MIN() and MAX() macros available everywhere
[PATCH] drm/amd/display: Fix unsafe uses of kernel mode FPU
2025-10-02 21:00 UTC
[PATCH] drm: amd: Use kmalloc_array to prevent overflow of dynamic size calculation
2025-10-02 23:19 UTC (2+ messages)
[PATCH V11 00/47] Color Pipeline API w/ VKMS
2025-09-30 13:58 UTC (18+ messages)
` [PATCH V11 06/47] drm/colorop: Add 1D Curve subtype
` [PATCH V11 17/47] drm/vkms: Use s32 for internal color pipeline precision
[PATCH 06/19 v6.1.y] minmax: simplify and clarify min_t()/max_t() implementation
2025-09-29 13:56 UTC (2+ messages)
` Patch "minmax: simplify and clarify min_t()/max_t() implementation" has been added to the 6.1-stable tree
[PATCH 08/19 v6.1.y] minmax: add a few more MIN_T/MAX_T users
2025-09-29 13:56 UTC (2+ messages)
` Patch "minmax: add a few more MIN_T/MAX_T users" has been added to the 6.1-stable tree
[PATCH 01/19 v6.1.y] minmax: add in_range() macro
2025-09-29 13:47 UTC (2+ messages)
` Patch "minmax: add in_range() macro" has been added to the 6.1-stable tree
[PATCH 02/19 v6.1.y] minmax: Introduce {min,max}_array()
2025-09-29 13:47 UTC (2+ messages)
` Patch "minmax: Introduce {min, max}_array()" has been added to the 6.1-stable tree
[PATCH 03/19 v6.1.y] minmax: deduplicate __unconst_integer_typeof()
2025-09-29 13:47 UTC (2+ messages)
` Patch "minmax: deduplicate __unconst_integer_typeof()" has been added to the 6.1-stable tree
[PATCH 04/19 v6.1.y] minmax: fix indentation of __cmp_once() and __clamp_once()
2025-09-29 13:47 UTC (2+ messages)
` Patch "minmax: fix indentation of __cmp_once() and __clamp_once()" has been added to the 6.1-stable tree
[RFC v8 00/21] DRM scheduling cgroup controller
2025-09-30 11:57 UTC (7+ messages)
` DRM Jobqueue design (was "[RFC v8 00/21] DRM scheduling cgroup controller")
[PATCH 0/7] Improve suspend callback usage
2025-10-02 17:42 UTC (8+ messages)
` [PATCH 1/7] drm/amd: Unify shutdown() callback behavior
` [PATCH 2/7] drm/amd: Stop exporting amdgpu_device_ip_suspend() outside amdgpu_device
` [PATCH 3/7] drm/amd: Remove comment about handling errors in amdgpu_device_ip_suspend_phase1()
` [PATCH 4/7] drm/amd: Don't always set IP block HW status to false
` [PATCH 5/7] drm/amd: Pass IP suspend errors up to callers
` [PATCH 6/7] drm/amd: Fix error handling with multiple userq IDRs
` [PATCH 7/7] drm/amd: Pass userq suspend failures up to caller
kdf_ioctl_create_queue_args::write/read_pointer_address are still FROM KFD ?
2025-10-02 17:02 UTC
[PATCH] drm/sched: Avoid killing entity last used by parent on child SIGKILL
2025-10-02 15:05 UTC
[PATCH 0/7] DC Patches Oct 1, 2025
2025-10-01 21:24 UTC (8+ messages)
` [PATCH 1/7] drm/amd/display: Remove inaccessible URL
` [PATCH 2/7] drm/amd/display: Remove comparing uint32_t to zero
` [PATCH 3/7] drm/amd/display: Enable Dynamic DTBCLK Switch
` [PATCH 4/7] drm/amd/display: Incorrect Mirror Cositing
` [PATCH 5/7] drm/amd/display: Driver implementation for cursor offloading to DMU
` [PATCH 6/7] drm/amd/display: [FW Promotion] Release 0.1.30.0
` [PATCH 7/7] drm/amd/display: Promote DC to 3.2.353
[PATCH v2] drm/client: Remove holds_console_lock parameter from suspend/resume
2025-10-01 19:37 UTC (3+ messages)
[PATCH] drm/client: Remove holds_console_lock parameter from suspend/resume
2025-10-01 14:53 UTC (4+ messages)
[PATCH 1/3] drm/amd/pm: export a function amdgpu_smu_ras_send_msg to allow send msg directly
2025-10-01 7:31 UTC (4+ messages)
` [PATCH 2/3] drm/amdgpu: Add ras module files into amdgpu
` [PATCH 3/3] drm/amdgpu: Add amdgpu drm ras ioctl for ras module
[PATCH V4 00/18] amdkfd: Implement kfd multiple contexts
2025-10-01 5:42 UTC (5+ messages)
` [PATCH V4 17/18] amdkfd: set_debug_trap ioctl only works on a primary kfd_process target
[Patch v1] drm/amdgpu/userqueue: validate userptrs for userqueues
2025-10-01 5:39 UTC (2+ messages)
[Patch v2] drm/amdgpu: clean up amdgpu hmm range functions
2025-09-30 13:24 UTC
[Patch v1] drm/amdgpu: clean up amdgpu hmm range functions
2025-09-30 12:03 UTC (2+ messages)
[PATCH v2] drm/amdgpu: use GPU_HDP_FLUSH for sriov
2025-09-30 11:35 UTC
[PATCH] drm/amdgpu: use GPU_HDP_FLUSH for sriov
2025-09-30 9:35 UTC
[PATCH v5 1/8] drm/amdgpu/userq: extend userq state
2025-09-30 8:58 UTC (10+ messages)
` [PATCH v5 2/8] drm/amdgpu: add userq object va track helpers
` [PATCH v5 3/8] drm/amdgpu: track the userq bo va for its obj management
` [PATCH v5 4/8] drm/amdgpu: keeping waiting userq fence infinitely
` [PATCH v5 5/8] drm/amdgpu: validate the queue va for resuming the queue
` [PATCH v5 6/8] drm/amdgpu: validate userq va for GEM unmap
` [PATCH v5 7/8] drm/amdgpu: add UAPI for user queue query status
` [PATCH v5 8/8] drm/amdgpu/userq: implement support for "
[PATCH] drm/amdgpu: Check swus/ds for switch state save
2025-09-30 7:46 UTC (2+ messages)
[PATCH] drm/amd/display: kernel-doc: document mpc_color_caps.num_rmcm_3dluts
2025-09-29 23:02 UTC (2+ messages)
[PATCH v4 1/2] amd/amdkfd: resolve a race in amdgpu_amdkfd_device_fini_sw
2025-09-29 13:09 UTC (4+ messages)
` [PATCH v4 2/2] amd/amdkfd: enhance kfd process check in switch partition
[PATCH 00/10] DC Patches September 24, 2025
2025-09-29 12:57 UTC (2+ messages)
[PATCH] drm/amdgpu: Fix general protection fault in amdgpu_vm_bo_reset_state_machine
2025-09-29 12:06 UTC (2+ messages)
[PATCH next] drm/amdgpu/userq: Fix error codes in mes_userq_mqd_create()
2025-09-29 6:15 UTC (4+ messages)
[v7 1/2] drm/amdgpu: Convert amdgpu userqueue management from IDR to XArray
2025-09-29 0:54 UTC (2+ messages)
[PATCH 0/3] More SI power management and PLL fixes
2025-09-28 23:33 UTC (6+ messages)
` [PATCH 1/3] drm/amd/pm: Disable MCLK switching on SI at high pixel clocks
` [PATCH 2/3] drm/amd: Disable ASPM on SI
` [PATCH 3/3] drm/amd/display: Set stricter clock dividers on DCE 6-10
[RFC v8 00/12] Fair DRM scheduler
2025-09-26 13:32 UTC (9+ messages)
` [RFC v8 07/12] drm/sched: Account entity GPU time
` [RFC v8 11/12] drm/sched: Remove FIFO and RR and simplify to a single run queue
[PATCH 00/23] Analog connector support in DC (v2)
2025-09-26 18:02 UTC (9+ messages)
` [PATCH 16/23] drm/amd/display: Poll analog connectors (v2)
` [PATCH 17/23] drm/amd/display: Add DCE BIOS_SCRATCH_0 register
` [PATCH 18/23] drm/amd/display: Make get_support_mask_for_device_id reusable
` [PATCH 19/23] drm/amd/display: Add DAC_LoadDetection to BIOS parser (v2)
` [PATCH 20/23] drm/amd/display: Use DAC load detection on analog connectors (v2)
` [PATCH 21/23] drm/amd/display: Add common modes to analog displays without EDID
` [PATCH 22/23] drm/amd/display: Don't add freesync modes to analog displays (v2)
` [PATCH 23/23] drm/amdgpu: Use DC by default for Bonaire
page: next (older) | prev (newer) | latest
- recent:[subjects (threaded)|topics (new)|topics (active)]
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox