From patchwork Wed Feb 24 17:55:57 2010 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Markus Armbruster X-Patchwork-Id: 46190 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from lists.gnu.org (lists.gnu.org [199.232.76.165]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client did not present a certificate) by ozlabs.org (Postfix) with ESMTPS id 22386B7CF8 for ; Thu, 25 Feb 2010 06:11:03 +1100 (EST) Received: from localhost ([127.0.0.1]:51421 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1NkMdQ-0003FN-Ar for incoming@patchwork.ozlabs.org; Wed, 24 Feb 2010 14:11:00 -0500 Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1NkLh7-0003iB-D5 for qemu-devel@nongnu.org; Wed, 24 Feb 2010 13:10:45 -0500 Received: from [199.232.76.173] (port=35975 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1NkLh6-0003hZ-Aa for qemu-devel@nongnu.org; Wed, 24 Feb 2010 13:10:44 -0500 Received: from Debian-exim by monty-python.gnu.org with spam-scanned (Exim 4.60) (envelope-from ) id 1NkLgz-0001Nf-DV for qemu-devel@nongnu.org; Wed, 24 Feb 2010 13:10:42 -0500 Received: from oxygen.pond.sub.org ([213.239.205.148]:37811) by monty-python.gnu.org with esmtps (TLS-1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.60) (envelope-from ) id 1NkLgy-0001N4-KX for qemu-devel@nongnu.org; Wed, 24 Feb 2010 13:10:37 -0500 Received: from blackfin.pond.sub.org (pD9E38C12.dip.t-dialin.net [217.227.140.18]) by oxygen.pond.sub.org (Postfix) with ESMTPA id 1F338276DA6 for ; Wed, 24 Feb 2010 19:04:30 +0100 (CET) Received: by blackfin.pond.sub.org (Postfix, from userid 500) id 86C18117; Wed, 24 Feb 2010 18:56:03 +0100 (CET) From: Markus Armbruster To: qemu-devel@nongnu.org Date: Wed, 24 Feb 2010 18:55:57 +0100 Message-Id: <1267034160-3517-46-git-send-email-armbru@redhat.com> X-Mailer: git-send-email 1.6.6 In-Reply-To: <1267034160-3517-1-git-send-email-armbru@redhat.com> References: <1267034160-3517-1-git-send-email-armbru@redhat.com> X-detected-operating-system: by monty-python.gnu.org: GNU/Linux 2.6 (newer, 3) Subject: [Qemu-devel] [PATCH RFC 45/48] qemu-option: Rename find_list() to qemu_find_opts() & external linkage X-BeenThere: qemu-devel@nongnu.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: qemu-devel.nongnu.org List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: qemu-devel-bounces+incoming=patchwork.ozlabs.org@nongnu.org Errors-To: qemu-devel-bounces+incoming=patchwork.ozlabs.org@nongnu.org Next commit wants to use it. Signed-off-by: Markus Armbruster --- qemu-config.c | 8 ++++---- qemu-config.h | 1 + 2 files changed, 5 insertions(+), 4 deletions(-) diff --git a/qemu-config.c b/qemu-config.c index 72b6279..7346aa0 100644 --- a/qemu-config.c +++ b/qemu-config.c @@ -309,7 +309,7 @@ static QemuOptsList *lists[] = { NULL, }; -static QemuOptsList *find_list(const char *group) +QemuOptsList *qemu_find_opts(const char *group) { int i; @@ -336,7 +336,7 @@ int qemu_set_option(const char *str) return -1; } - list = find_list(group); + list = qemu_find_opts(group); if (list == NULL) { return -1; } @@ -451,7 +451,7 @@ int qemu_config_parse(FILE *fp, const char *fname) } if (sscanf(line, "[%63s \"%63[^\"]\"]", group, id) == 2) { /* group with id */ - list = find_list(group); + list = qemu_find_opts(group); if (list == NULL) goto out; opts = qemu_opts_create(list, id, 1); @@ -459,7 +459,7 @@ int qemu_config_parse(FILE *fp, const char *fname) } if (sscanf(line, "[%63[^]]]", group) == 1) { /* group without id */ - list = find_list(group); + list = qemu_find_opts(group); if (list == NULL) goto out; opts = qemu_opts_create(list, NULL, 0); diff --git a/qemu-config.h b/qemu-config.h index c507687..f217c58 100644 --- a/qemu-config.h +++ b/qemu-config.h @@ -11,6 +11,7 @@ extern QemuOptsList qemu_global_opts; extern QemuOptsList qemu_mon_opts; extern QemuOptsList qemu_cpudef_opts; +QemuOptsList *qemu_find_opts(const char *group); int qemu_set_option(const char *str); int qemu_global_option(const char *str); void qemu_add_globals(void);