mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-12-28 11:18:45 +07:00
7d0174065f
We allow more then 255 binderfs binder devices to be created since there are workloads that require more than that. If we use __u8 we'll overflow after 255. So let's use a __u32. Note that there's no released kernel with binderfs out there so this is not a regression. Signed-off-by: Christian Brauner <christian@brauner.io> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
36 lines
804 B
C
36 lines
804 B
C
/* SPDX-License-Identifier: GPL-2.0 WITH Linux-syscall-note */
|
|
/*
|
|
* Copyright (C) 2018 Canonical Ltd.
|
|
*
|
|
*/
|
|
|
|
#ifndef _UAPI_LINUX_BINDERFS_H
|
|
#define _UAPI_LINUX_BINDERFS_H
|
|
|
|
#include <linux/android/binder.h>
|
|
#include <linux/types.h>
|
|
#include <linux/ioctl.h>
|
|
|
|
#define BINDERFS_MAX_NAME 255
|
|
|
|
/**
|
|
* struct binderfs_device - retrieve information about a new binder device
|
|
* @name: the name to use for the new binderfs binder device
|
|
* @major: major number allocated for binderfs binder devices
|
|
* @minor: minor number allocated for the new binderfs binder device
|
|
*
|
|
*/
|
|
struct binderfs_device {
|
|
char name[BINDERFS_MAX_NAME + 1];
|
|
__u32 major;
|
|
__u32 minor;
|
|
};
|
|
|
|
/**
|
|
* Allocate a new binder device.
|
|
*/
|
|
#define BINDER_CTL_ADD _IOWR('b', 1, struct binderfs_device)
|
|
|
|
#endif /* _UAPI_LINUX_BINDERFS_H */
|
|
|