mirror of
https://github.com/torvalds/linux.git
synced 2026-09-23 22:14:03 +02:00
drm/xe/vm: Use regular comment for GSC VM lockdep note in xe_vm_create()
The block comment describing the GSC VM lockdep annotation uses the kernel-doc opening marker (/**), but it is an in-function implementation note rather than API documentation. Per Documentation/doc-guide/kernel-doc.rst, /** is reserved for kernel-doc comments describing functions, structs, and other API elements, and using it for other comments can confuse kernel-doc tooling. Switch it to a regular block comment (/*). No functional change. Cc: Matthew Brost <matthew.brost@intel.com> Assisted-by: Claude:claude-opus-4.7 Reviewed-by: Matthew Brost <matthew.brost@intel.com> Link: https://patch.msgid.link/20260721205516.4058959-4-shuicheng.lin@intel.com Signed-off-by: Shuicheng Lin <shuicheng.lin@intel.com>
This commit is contained in:
parent
cc98c03184
commit
329a7a6cee
|
|
@ -1645,7 +1645,7 @@ struct xe_vm *xe_vm_create(struct xe_device *xe, u32 flags, struct xe_file *xef)
|
|||
|
||||
if (xef)
|
||||
vm->xef = xe_file_get(xef);
|
||||
/**
|
||||
/*
|
||||
* GSC VMs are kernel-owned, only used for PXP ops and can sometimes be
|
||||
* manipulated under the PXP mutex. However, the PXP mutex can be taken
|
||||
* under a user-VM lock when the PXP session is started at exec_queue
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user