From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:34089) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1UnRyX-0000pO-Hl for qemu-devel@nongnu.org; Fri, 14 Jun 2013 07:15:31 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1UnRyU-0004o0-5G for qemu-devel@nongnu.org; Fri, 14 Jun 2013 07:15:25 -0400 Received: from oxygen.pond.sub.org ([2a01:4f8:121:10e4::3]:44194) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1UnRyT-0004mN-VK for qemu-devel@nongnu.org; Fri, 14 Jun 2013 07:15:22 -0400 From: Markus Armbruster Date: Fri, 14 Jun 2013 13:15:02 +0200 Message-Id: <1371208516-7857-3-git-send-email-armbru@redhat.com> In-Reply-To: <1371208516-7857-1-git-send-email-armbru@redhat.com> References: <1371208516-7857-1-git-send-email-armbru@redhat.com> Subject: [Qemu-devel] [PATCH v3 02/16] qemu-option: check_params() is now unused, drop it List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Cc: jan.kiszka@siemens.com, alex.williamson@redhat.com, aliguori@us.ibm.com, afaerber@suse.de, aviksil@linux.vnet.ibm.com Signed-off-by: Markus Armbruster --- include/qemu/option.h | 2 -- util/qemu-option.c | 30 ------------------------------ 2 files changed, 32 deletions(-) diff --git a/include/qemu/option.h b/include/qemu/option.h index bdb6d21..a83c700 100644 --- a/include/qemu/option.h +++ b/include/qemu/option.h @@ -55,8 +55,6 @@ int get_next_param_value(char *buf, int buf_size, const char *tag, const char **pstr); int get_param_value(char *buf, int buf_size, const char *tag, const char *str); -int check_params(char *buf, int buf_size, - const char * const *params, const char *str); /* diff --git a/util/qemu-option.c b/util/qemu-option.c index 8b74bf1..412c425 100644 --- a/util/qemu-option.c +++ b/util/qemu-option.c @@ -123,36 +123,6 @@ int get_param_value(char *buf, int buf_size, return get_next_param_value(buf, buf_size, tag, &str); } -int check_params(char *buf, int buf_size, - const char * const *params, const char *str) -{ - const char *p; - int i; - - p = str; - while (*p != '\0') { - p = get_opt_name(buf, buf_size, p, '='); - if (*p != '=') { - return -1; - } - p++; - for (i = 0; params[i] != NULL; i++) { - if (!strcmp(params[i], buf)) { - break; - } - } - if (params[i] == NULL) { - return -1; - } - p = get_opt_value(NULL, 0, p); - if (*p != ',') { - break; - } - p++; - } - return 0; -} - /* * Searches an option list for an option with the given name */ -- 1.7.11.7