Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

um: time-travel: clean up kernel-doc warnings

Repair all kernel-doc warnings in um_timetravel.h:
- add one enum description
- mark "reserve" as private
- use a leading '@' on current_time

Warning: include/uapi/linux/um_timetravel.h:59 Enum value
'UM_TIMETRAVEL_SHARED_MAX_FDS' not described in enum
'um_timetravel_shared_mem_fds'
Warning: include/uapi/linux/um_timetravel.h:245 union member 'reserve'
not described in 'um_timetravel_schedshm_client'
Warning: include/uapi/linux/um_timetravel.h:288 struct member
'current_time' not described in 'um_timetravel_schedshm'

Signed-off-by: Randy Dunlap <rdunlap@infradead.org>
Link: https://patch.msgid.link/20260226221112.1042008-1-rdunlap@infradead.org
Signed-off-by: Johannes Berg <johannes.berg@intel.com>

authored by

Randy Dunlap and committed by
Johannes Berg
1ccc861d d46dfb36

+5 -1
+5 -1
include/uapi/linux/um_timetravel.h
··· 56 56 * in the control message 57 57 */ 58 58 UM_TIMETRAVEL_SHARED_LOGFD, 59 + /** 60 + * @UM_TIMETRAVEL_SHARED_MAX_FDS: number of fds listed here 61 + */ 59 62 UM_TIMETRAVEL_SHARED_MAX_FDS, 60 63 }; 61 64 ··· 245 242 __u64 req_time; 246 243 __u64 name; 247 244 }; 245 + /* private: */ 248 246 char reserve[128]; /* reserved for future usage */ 249 247 }; 250 248 ··· 268 264 * is made by any client. Clients also must update this value when they 269 265 * insert/update an own request into the shared memory while not running 270 266 * themselves, and the new request is before than the current value. 271 - * current_time: Current time, can only be set by the client in running state 267 + * @current_time: Current time, can only be set by the client in running state 272 268 * (indicated by @running_id), though that client may only run until @free_until, 273 269 * so it must remain smaller than @free_until. 274 270 * @running_id: The current client in state running, set before a client is