Revision 7092fe866907f4f243122ab388cbf0e77305afaa authored by Majd Dibbiny on 27 June 2016, 09:08:33 UTC, committed by David S. Miller on 29 June 2016, 08:28:46 UTC
Add the upcoming ConnectX-5 PCIe 4.0 device to the list of
supported devices by the mlx5 driver.

Signed-off-by: Majd Dibbiny <majd@mellanox.com>
Signed-off-by: Saeed Mahameed <saeedm@mellanox.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
1 parent 5be1ea8
Raw File
usercopy.c
#include <linux/export.h>
#include <linux/bug.h>
#include <linux/uaccess.h>

void copy_from_user_overflow(void)
{
	WARN(1, "Buffer overflow detected!\n");
}
EXPORT_SYMBOL(copy_from_user_overflow);
back to top