mirror of
https://github.com/followmsi/android_kernel_google_msm.git
synced 2024-11-06 23:17:41 +00:00
HSI: hsi_char: Remove max_data_size from sysfs
Remove max_data_size sysfs entry. Otherwise is possible to have a buffer overrun if its value is increased after the device is open. Signed-off-by: Carlos Chinea <carlos.chinea@nokia.com> Acked-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org> Acked-by: Linus Walleij <linus.walleij@linaro.org>
This commit is contained in:
parent
ec1c56ff81
commit
fdadb6e9a5
1 changed files with 1 additions and 1 deletions
|
@ -123,7 +123,7 @@ struct hsc_client_data {
|
|||
static unsigned int hsc_major;
|
||||
/* Maximum buffer size that hsi_char will accept from userspace */
|
||||
static unsigned int max_data_size = 0x1000;
|
||||
module_param(max_data_size, uint, S_IRUSR | S_IWUSR);
|
||||
module_param(max_data_size, uint, 0);
|
||||
MODULE_PARM_DESC(max_data_size, "max read/write data size [4,8..65536] (^2)");
|
||||
|
||||
static void hsc_add_tail(struct hsc_channel *channel, struct hsi_msg *msg,
|
||||
|
|
Loading…
Reference in a new issue