https://github.com/torvalds/linux
Revision eeca9a671aaa6a77eaed725e842d53c5ce51940b authored by Michael S. Tsirkin on 05 April 2016, 08:26:44 UTC, committed by Michael S. Tsirkin on 07 April 2016, 12:16:40 UTC
Gabriel merged support for QEMU FW CFG interface, but there's apparently
no official maintainer. It's also possible that this will grow more
interfaces in future.  I'll happily co-maintain it and handle pull
requests together with the rest of the PV stuff I maintain.

Cc: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Cc: Gabriel Somlo <somlo@cmu.edu>
Signed-off-by: Michael S. Tsirkin <mst@redhat.com>
Acked-by: Gabriel Somlo <somlo@cmu.edu>
1 parent def7ac8
Raw File
Tip revision: eeca9a671aaa6a77eaed725e842d53c5ce51940b authored by Michael S. Tsirkin on 05 April 2016, 08:26:44 UTC
MAINTAINERS: add entry for QEMU
Tip revision: eeca9a6
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