From: Stefan Berger <stefanb@linux.vnet.ibm.com>
To: qemu-devel@nongnu.org
Cc: anbang.ruan@cs.ox.ac.uk, mst@redhat.com,
Stefan Berger <stefanb@linux.vnet.ibm.com>,
andreas.niederl@iaik.tugraz.at, serge@hallyn.com
Subject: [Qemu-devel] [PATCH 7/5] Move parsing of filedescriptor into common function
Date: Tue, 04 Oct 2011 14:44:47 -0400 [thread overview]
Message-ID: <4E8B541F.8000700@linux.vnet.ibm.com> (raw)
In-Reply-To: <20110928132255.156431784@linux.vnet.ibm.com>
Move the parsing of a filedescriptor into a common function qemu_parse_fd().
Have the code in net.c call this function.
Signed-off-by: Stefan Berger <stefanb@linux.vnet.ibm.com>
---
cutils.c | 12 ++++++++++++
net.c | 7 +------
qemu-common.h | 1 +
3 files changed, 14 insertions(+), 6 deletions(-)
Index: qemu-git.pt/net.c
===================================================================
--- qemu-git.pt.orig/net.c
+++ qemu-git.pt/net.c
@@ -733,12 +733,7 @@ int net_handle_fd_param(Monitor *mon, co
return -1;
}
} else {
- char *endptr = NULL;
-
- fd = strtol(param, &endptr, 10);
- if (*endptr || (fd == 0 && param == endptr)) {
- return -1;
- }
+ fd = qemu_parse_fd(param);
}
return fd;
Index: qemu-git.pt/qemu-common.h
===================================================================
--- qemu-git.pt.orig/qemu-common.h
+++ qemu-git.pt/qemu-common.h
@@ -143,6 +143,7 @@ time_t mktimegm(struct tm *tm);
int qemu_fls(int i);
int qemu_fdatasync(int fd);
int fcntl_setfl(int fd, int flag);
+int qemu_parse_fd(const char *param);
/*
* strtosz() suffixes used to specify the default treatment of an
Index: qemu-git.pt/cutils.c
===================================================================
--- qemu-git.pt.orig/cutils.c
+++ qemu-git.pt/cutils.c
@@ -415,3 +415,15 @@ int64_t strtosz(const char *nptr, char *
{
return strtosz_suffix(nptr, end, STRTOSZ_DEFSUFFIX_MB);
}
+
+int qemu_parse_fd(const char *param)
+{
+ int fd;
+ char *endptr = NULL;
+
+ fd = strtol(param, &endptr, 10);
+ if (*endptr || (fd == 0 && param == endptr)) {
+ return -1;
+ }
+ return fd;
+}
next prev parent reply other threads:[~2011-10-04 18:45 UTC|newest]
Thread overview: 13+ messages / expand[flat|nested] mbox.gz Atom feed top
2011-09-28 13:22 [Qemu-devel] [PATCH V11 0/5] Qemu Trusted Platform Module (TPM) integration Stefan Berger
2011-09-28 13:22 ` [Qemu-devel] [PATCH V11 1/5] Support for TPM command line options Stefan Berger
2011-09-28 13:22 ` [Qemu-devel] [PATCH V11 2/5] Add TPM (frontend) hardware interface (TPM TIS) to Qemu Stefan Berger
2011-09-28 13:22 ` [Qemu-devel] [PATCH V11 3/5] Add a debug register Stefan Berger
2011-09-28 13:22 ` [Qemu-devel] [PATCH V11 4/5] Build the TPM frontend code Stefan Berger
2011-09-28 13:23 ` [Qemu-devel] [PATCH V11 5/5] Add a TPM Passthrough backend driver implementation Stefan Berger
2011-10-02 11:30 ` Michael S. Tsirkin
2011-10-02 11:38 ` [Qemu-devel] [PATCH V11 0/5] Qemu Trusted Platform Module (TPM) integration Michael S. Tsirkin
2011-10-02 20:12 ` Stefan Berger
2011-10-02 21:05 ` Michael S. Tsirkin
2011-10-04 18:44 ` [Qemu-devel] [PATCH 6/5] Introduce --enable-tpm-passthrough configure option Stefan Berger
2011-10-04 18:44 ` Stefan Berger [this message]
2011-10-04 18:45 ` [Qemu-devel] [PATCH 8/5] Add fd parameter for TPM passthrough driver Stefan Berger
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=4E8B541F.8000700@linux.vnet.ibm.com \
--to=stefanb@linux.vnet.ibm.com \
--cc=anbang.ruan@cs.ox.ac.uk \
--cc=andreas.niederl@iaik.tugraz.at \
--cc=mst@redhat.com \
--cc=qemu-devel@nongnu.org \
--cc=serge@hallyn.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).