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

binder: use enum for binder ioctls

All of the other constants in this file are defined using enums, so make
the constants more consistent by defining the ioctls in an enum as well.

This is necessary for Rust Binder since the _IO macros are too
complicated for bindgen to see that they expand to integer constants.
Replacing the #defines with an enum forces bindgen to evaluate them
properly, which allows us to access them from Rust.

I originally intended to include this change in the first patch of the
Rust Binder patchset [1], but at plumbers Carlos Llamas told me that
this change has been discussed previously [2] and suggested that I send
it upstream separately.

Link: https://lore.kernel.org/rust-for-linux/20231101-rust-binder-v1-1-08ba9197f637@google.com/ [1]
Link: https://lore.kernel.org/all/YoIK2l6xbQMPGZHy@kroah.com/ [2]
Signed-off-by: Alice Ryhl <aliceryhl@google.com>
Acked-by: Carlos Llamas <cmllamas@google.com>
Link: https://lore.kernel.org/r/20231208152801.3425772-1-aliceryhl@google.com
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>

authored by

Alice Ryhl and committed by
Greg Kroah-Hartman
3634783b d667378a

+16 -14
+16 -14
include/uapi/linux/android/binder.h
··· 251 251 __s32 param; 252 252 }; 253 253 254 - #define BINDER_WRITE_READ _IOWR('b', 1, struct binder_write_read) 255 - #define BINDER_SET_IDLE_TIMEOUT _IOW('b', 3, __s64) 256 - #define BINDER_SET_MAX_THREADS _IOW('b', 5, __u32) 257 - #define BINDER_SET_IDLE_PRIORITY _IOW('b', 6, __s32) 258 - #define BINDER_SET_CONTEXT_MGR _IOW('b', 7, __s32) 259 - #define BINDER_THREAD_EXIT _IOW('b', 8, __s32) 260 - #define BINDER_VERSION _IOWR('b', 9, struct binder_version) 261 - #define BINDER_GET_NODE_DEBUG_INFO _IOWR('b', 11, struct binder_node_debug_info) 262 - #define BINDER_GET_NODE_INFO_FOR_REF _IOWR('b', 12, struct binder_node_info_for_ref) 263 - #define BINDER_SET_CONTEXT_MGR_EXT _IOW('b', 13, struct flat_binder_object) 264 - #define BINDER_FREEZE _IOW('b', 14, struct binder_freeze_info) 265 - #define BINDER_GET_FROZEN_INFO _IOWR('b', 15, struct binder_frozen_status_info) 266 - #define BINDER_ENABLE_ONEWAY_SPAM_DETECTION _IOW('b', 16, __u32) 267 - #define BINDER_GET_EXTENDED_ERROR _IOWR('b', 17, struct binder_extended_error) 254 + enum { 255 + BINDER_WRITE_READ = _IOWR('b', 1, struct binder_write_read), 256 + BINDER_SET_IDLE_TIMEOUT = _IOW('b', 3, __s64), 257 + BINDER_SET_MAX_THREADS = _IOW('b', 5, __u32), 258 + BINDER_SET_IDLE_PRIORITY = _IOW('b', 6, __s32), 259 + BINDER_SET_CONTEXT_MGR = _IOW('b', 7, __s32), 260 + BINDER_THREAD_EXIT = _IOW('b', 8, __s32), 261 + BINDER_VERSION = _IOWR('b', 9, struct binder_version), 262 + BINDER_GET_NODE_DEBUG_INFO = _IOWR('b', 11, struct binder_node_debug_info), 263 + BINDER_GET_NODE_INFO_FOR_REF = _IOWR('b', 12, struct binder_node_info_for_ref), 264 + BINDER_SET_CONTEXT_MGR_EXT = _IOW('b', 13, struct flat_binder_object), 265 + BINDER_FREEZE = _IOW('b', 14, struct binder_freeze_info), 266 + BINDER_GET_FROZEN_INFO = _IOWR('b', 15, struct binder_frozen_status_info), 267 + BINDER_ENABLE_ONEWAY_SPAM_DETECTION = _IOW('b', 16, __u32), 268 + BINDER_GET_EXTENDED_ERROR = _IOWR('b', 17, struct binder_extended_error), 269 + }; 268 270 269 271 /* 270 272 * NOTE: Two special error codes you should check for when calling