The patch titled Subject: uapi linux/coda_psdev.h: move CODA_REQ_ from uapi to kernel side headers has been added to the -mm tree. Its filename is uapi-linux-coda_psdevh-move-coda_req_-from-uapi-to-kernel-side-headers.patch This patch should soon appear at http://ozlabs.org/~akpm/mmots/broken-out/uapi-linux-coda_psdevh-move-coda_req_-from-uapi-to-kernel-side-headers.patch and later at http://ozlabs.org/~akpm/mmotm/broken-out/uapi-linux-coda_psdevh-move-coda_req_-from-uapi-to-kernel-side-headers.patch Before you just go and hit "reply", please: a) Consider who else should be cc'ed b) Prefer to cc a suitable mailing list as well c) Ideally: find the original patch on the mailing list and do a reply-to-all to that, adding suitable additional cc's *** Remember to use Documentation/process/submit-checklist.rst when testing your code *** The -mm tree is included into linux-next and is updated there every 3-4 working days ------------------------------------------------------ From: Jan Harkes <jaharkes@xxxxxxxxxx> Subject: uapi linux/coda_psdev.h: move CODA_REQ_ from uapi to kernel side headers These constants only used internally and not exposed to userspace. Link: http://lkml.kernel.org/r/baeafc30dad70d8b422ee679420099c2d8aa7da0.1558117389.git.jaharkes@xxxxxxxxxx Signed-off-by: Jan Harkes <jaharkes@xxxxxxxxxx> Cc: Arnd Bergmann <arnd@xxxxxxxx> Cc: Colin Ian King <colin.king@xxxxxxxxxxxxx> Cc: Dan Carpenter <dan.carpenter@xxxxxxxxxx> Cc: David Howells <dhowells@xxxxxxxxxx> Cc: Fabian Frederick <fabf@xxxxxxxxx> Cc: Mikko Rapeli <mikko.rapeli@xxxxxx> Cc: Sam Protsenko <semen.protsenko@xxxxxxxxxx> Cc: Yann Droneaud <ydroneaud@xxxxxxxxxx> Cc: Zhouyang Jia <jiazhouyang09@xxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- include/linux/coda_psdev.h | 5 +++++ include/uapi/linux/coda_psdev.h | 5 ----- 2 files changed, 5 insertions(+), 5 deletions(-) --- a/include/linux/coda_psdev.h~uapi-linux-coda_psdevh-move-coda_req_-from-uapi-to-kernel-side-headers +++ a/include/linux/coda_psdev.h @@ -31,6 +31,11 @@ struct upc_req { wait_queue_head_t uc_sleep; /* process' wait queue */ }; +#define CODA_REQ_ASYNC 0x1 +#define CODA_REQ_READ 0x2 +#define CODA_REQ_WRITE 0x4 +#define CODA_REQ_ABORT 0x8 + static inline struct venus_comm *coda_vcp(struct super_block *sb) { return (struct venus_comm *)((sb)->s_fs_info); --- a/include/uapi/linux/coda_psdev.h~uapi-linux-coda_psdevh-move-coda_req_-from-uapi-to-kernel-side-headers +++ a/include/uapi/linux/coda_psdev.h @@ -7,9 +7,4 @@ #define CODA_PSDEV_MAJOR 67 #define MAX_CODADEVS 5 /* how many do we allow */ -#define CODA_REQ_ASYNC 0x1 -#define CODA_REQ_READ 0x2 -#define CODA_REQ_WRITE 0x4 -#define CODA_REQ_ABORT 0x8 - #endif /* _UAPI__CODA_PSDEV_H */ _ Patches currently in -mm which might be from jaharkes@xxxxxxxxxx are coda-pass-the-host-file-in-vma-vm_file-on-mmap.patch coda-potential-buffer-overflow-in-coda_psdev_write.patch coda-dont-try-to-print-names-that-were-considered-too-long.patch uapi-linux-coda_psdevh-move-coda_req_-from-uapi-to-kernel-side-headers.patch coda-change-codas-user-api-to-use-64-bit-time_t-in-timespec.patch coda-bump-module-version.patch coda-remove-uapi-linux-coda_psdevh.patch