Skip to content

Commit 5fc3a08

Browse files
committed
tools headers: Sync uapi/drm/drm.h with the kernel sources
To pick up the changes in this cset: 56c594d ("drm: add DRM_SET_CLIENT_NAME ioctl") This addresses these perf build warnings: Warning: Kernel ABI header differences: diff -u tools/include/uapi/drm/drm.h include/uapi/drm/drm.h Please see tools/include/uapi/README for further details. Reviewed-by: James Clark <james.clark@linaro.org> Cc: David Airlie <airlied@gmail.com> Cc: Simona Vetter <simona@ffwll.ch> Cc: Maarten Lankhorst <maarten.lankhorst@linux.intel.com> Cc: Maxime Ripard <mripard@kernel.org> Cc: Thomas Zimmermann <tzimmermann@suse.de> Cc: dri-devel@lists.freedesktop.org Link: https://lore.kernel.org/r/20241203035349.1901262-2-namhyung@kernel.org Signed-off-by: Namhyung Kim <namhyung@kernel.org>
1 parent 88a6e2f commit 5fc3a08

1 file changed

Lines changed: 17 additions & 0 deletions

File tree

  • tools/include/uapi/drm

tools/include/uapi/drm/drm.h

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1024,6 +1024,13 @@ struct drm_crtc_queue_sequence {
10241024
__u64 user_data; /* user data passed to event */
10251025
};
10261026

1027+
#define DRM_CLIENT_NAME_MAX_LEN 64
1028+
struct drm_set_client_name {
1029+
__u64 name_len;
1030+
__u64 name;
1031+
};
1032+
1033+
10271034
#if defined(__cplusplus)
10281035
}
10291036
#endif
@@ -1288,6 +1295,16 @@ extern "C" {
12881295
*/
12891296
#define DRM_IOCTL_MODE_CLOSEFB DRM_IOWR(0xD0, struct drm_mode_closefb)
12901297

1298+
/**
1299+
* DRM_IOCTL_SET_CLIENT_NAME - Attach a name to a drm_file
1300+
*
1301+
* Having a name allows for easier tracking and debugging.
1302+
* The length of the name (without null ending char) must be
1303+
* <= DRM_CLIENT_NAME_MAX_LEN.
1304+
* The call will fail if the name contains whitespaces or non-printable chars.
1305+
*/
1306+
#define DRM_IOCTL_SET_CLIENT_NAME DRM_IOWR(0xD1, struct drm_set_client_name)
1307+
12911308
/*
12921309
* Device specific ioctls should only be in their respective headers
12931310
* The device specific ioctl range is from 0x40 to 0x9f.

0 commit comments

Comments
 (0)