mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-12-01 08:36:43 +07:00
9 lines
170 B
C
9 lines
170 B
C
|
#include <linux/module.h>
|
||
|
#include <linux/bug.h>
|
||
|
|
||
|
void copy_from_user_overflow(void)
|
||
|
{
|
||
|
WARN(1, "Buffer overflow detected!\n");
|
||
|
}
|
||
|
EXPORT_SYMBOL(copy_from_user_overflow);
|