search for: drm_nouveau_vm_bind_op

Displaying 7 results from an estimated 7 matches for "drm_nouveau_vm_bind_op".

2023 Dec 25
2
[PATCH -next] drm/nouveau: uapi: fix kerneldoc warnings
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' ./include/uapi/drm/nouveau_drm.h:292: warning: Excess struct member 'DRM_NOUVEAU_VM_BIND_OP_UNMAP' description in 'drm_nouveau_vm_bind_op' ./include/uapi/drm/nouveau_drm.h:292: warning: Excess struct member 'DRM_NOUVEA...
2023 Dec 25
2
[PATCH -next] drm/nouveau: uapi: fix kerneldoc warnings
...3 22:51, Vegard Nossum wrote: > 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' > ./include/uapi/drm/nouveau_drm.h:292: warning: Excess struct member 'DRM_NOUVEAU_VM_BIND_OP_UNMAP' description in 'drm_nouveau_vm_bind_op' > ./include/uapi/drm/nouveau_drm.h:292: warning: Excess struct member '...
2023 Jan 27
1
[PATCH drm-next 05/14] drm/nouveau: new VM_BIND uapi interfaces
...t address of the kernel managed VA space region >> + */ >> + __u64 unmanaged_addr; >> + /** >> + * @unmanaged_size: size of the kernel managed VA space region in bytes >> + */ >> + __u64 unmanaged_size; >> +}; >> + >> +/** >> + * struct drm_nouveau_vm_bind_op - VM_BIND operation >> + * >> + * This structure represents a single VM_BIND operation. UMDs should pass >> + * an array of this structure via struct drm_nouveau_vm_bind's &op_ptr field. >> + */ >> +struct drm_nouveau_vm_bind_op { >> + /** >> + * @...
2023 Jan 27
1
[PATCH drm-next 05/14] drm/nouveau: new VM_BIND uapi interfaces
...t;>> +??? __u64 unmanaged_addr; >>> +??? /** >>> +???? * @unmanaged_size: size of the kernel managed VA space region >>> in bytes >>> +???? */ >>> +??? __u64 unmanaged_size; >>> +}; >>> + >>> +/** >>> + * struct drm_nouveau_vm_bind_op - VM_BIND operation >>> + * >>> + * This structure represents a single VM_BIND operation. UMDs >>> should pass >>> + * an array of this structure via struct drm_nouveau_vm_bind's >>> &op_ptr field. >>> + */ >>> +struct drm_nou...
2023 Jul 25
1
[PATCH drm-misc-next v8 03/12] drm/nouveau: new VM_BIND uapi interfaces
...t; Yeah, I know this is a total bikeshed color thing and I'm not going to > block anything based on it. ? Just wanted to see if we can come up with > anything better.? It's documented and that's the important thing. > > +}; > + > +/** > + * struct drm_nouveau_vm_bind_op - VM_BIND operation > + * > + * This structure represents a single VM_BIND operation. UMDs > should pass > + * an array of this structure via struct drm_nouveau_vm_bind's > &op_ptr field. > + */ > +struct drm_nouveau_vm_bind_op { > +?...
2023 Jan 27
0
[PATCH drm-next 05/14] drm/nouveau: new VM_BIND uapi interfaces
...gt;> + __u64 unmanaged_addr; >>>> + /** >>>> + * @unmanaged_size: size of the kernel managed VA space region in bytes >>>> + */ >>>> + __u64 unmanaged_size; >>>> +}; >>>> + >>>> +/** >>>> + * struct drm_nouveau_vm_bind_op - VM_BIND operation >>>> + * >>>> + * This structure represents a single VM_BIND operation. UMDs should pass >>>> + * an array of this structure via struct drm_nouveau_vm_bind's &op_ptr field. >>>> + */ >>>> +struct drm_nouveau_vm_...
2023 Dec 25
1
[PATCH -next] drm/nouveau: uapi: fix kerneldoc warnings
On 12/25/23 00:30, Vegard Nossum wrote: > > 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 DRM_NOUVEAU_VM_BIND_OP_MAP 0x0; >> #define DRM_NOUVEAU_VM_BIND_OP_UNMAP 0x1; >> ???? __u32 flags; >> #define DRM_NOUVEAU_VM_BIND...