From patchwork Wed Jun 19 17:16:23 2013 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Michael Tokarev X-Patchwork-Id: 252625 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from lists.gnu.org (lists.gnu.org [IPv6:2001:4830:134:3::11]) (using TLSv1 with cipher AES256-SHA (256/256 bits)) (Client did not present a certificate) by ozlabs.org (Postfix) with ESMTPS id 62F4E2C02A1 for ; Thu, 20 Jun 2013 03:16:59 +1000 (EST) Received: from localhost ([::1]:51360 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1UpM08-0000eK-9N for incoming@patchwork.ozlabs.org; Wed, 19 Jun 2013 13:16:56 -0400 Received: from eggs.gnu.org ([2001:4830:134:3::10]:34384) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1UpLzi-0000dw-AM for qemu-devel@nongnu.org; Wed, 19 Jun 2013 13:16:32 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1UpLzh-00036y-5s for qemu-devel@nongnu.org; Wed, 19 Jun 2013 13:16:30 -0400 Received: from isrv.corpit.ru ([86.62.121.231]:42142) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1UpLzg-00036m-UA for qemu-devel@nongnu.org; Wed, 19 Jun 2013 13:16:29 -0400 Received: from gandalf.tls.msk.ru (mjt.vpn.tls.msk.ru [192.168.177.99]) by isrv.corpit.ru (Postfix) with ESMTP id BE54941AF8; Wed, 19 Jun 2013 21:16:26 +0400 (MSK) Received: by gandalf.tls.msk.ru (Postfix, from userid 1000) id 4828D51E; Wed, 19 Jun 2013 21:16:26 +0400 (MSK) From: Michael Tokarev To: Anthony Liguori Date: Wed, 19 Jun 2013 21:16:23 +0400 Message-Id: <1371662183-29138-2-git-send-email-mjt@msgid.tls.msk.ru> X-Mailer: git-send-email 1.7.10.4 In-Reply-To: <1371662183-29138-1-git-send-email-mjt@msgid.tls.msk.ru> References: <1371662183-29138-1-git-send-email-mjt@msgid.tls.msk.ru> X-detected-operating-system: by eggs.gnu.org: GNU/Linux 3.x X-Received-From: 86.62.121.231 Cc: Michael Tokarev , qemu-devel@nongnu.org Subject: [Qemu-devel] [PATCH 2/2] remove unused check_params() X-BeenThere: qemu-devel@nongnu.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: qemu-devel-bounces+incoming=patchwork.ozlabs.org@nongnu.org Sender: qemu-devel-bounces+incoming=patchwork.ozlabs.org@nongnu.org last user was in -boot options processing Signed-off-by: Michael Tokarev --- 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 */