From f853ac66c7b49a3a064ee838683c27fc3c9b86cc Mon Sep 17 00:00:00 2001 From: Thomas Huth Date: Wed, 13 Jan 2016 09:05:32 +0100 Subject: net/slirp: Tell the users when they are using deprecated options We don't want to support the legacy -tftp, -bootp, -smb and -net channel options forever. So let's start telling the users that they are deprecated and what option should be used instead. Signed-off-by: Thomas Huth Signed-off-by: Jason Wang --- os-posix.c | 3 +++ 1 file changed, 3 insertions(+) (limited to 'os-posix.c') diff --git a/os-posix.c b/os-posix.c index e4da406f38..87e2a1696d 100644 --- a/os-posix.c +++ b/os-posix.c @@ -40,6 +40,7 @@ #include "net/slirp.h" #include "qemu-options.h" #include "qemu/rcu.h" +#include "qemu/error-report.h" #ifdef CONFIG_LINUX #include @@ -139,6 +140,8 @@ void os_parse_cmd_args(int index, const char *optarg) switch (index) { #ifdef CONFIG_SLIRP case QEMU_OPTION_smb: + error_report("The -smb option is deprecated. " + "Please use '-netdev user,smb=...' instead."); if (net_slirp_smb(optarg) < 0) exit(1); break; -- cgit v1.2.1