From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:56314) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1fuBMq-0000e2-N3 for qemu-devel@nongnu.org; Mon, 27 Aug 2018 02:51:17 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1fuBMl-0001h5-PY for qemu-devel@nongnu.org; Mon, 27 Aug 2018 02:51:16 -0400 Received: from mx3-rdu2.redhat.com ([66.187.233.73]:52862 helo=mx1.redhat.com) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1fuBMl-0001ga-HV for qemu-devel@nongnu.org; Mon, 27 Aug 2018 02:51:11 -0400 References: <20180827022253.28140-1-famz@redhat.com> From: Thomas Huth Message-ID: Date: Mon, 27 Aug 2018 08:51:04 +0200 MIME-Version: 1.0 In-Reply-To: <20180827022253.28140-1-famz@redhat.com> Content-Type: text/plain; charset=utf-8 Content-Language: en-US Content-Transfer-Encoding: 7bit Subject: Re: [Qemu-devel] [PATCH v2] slirp: Implement RFC2132 TFTP server name List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: Fam Zheng , qemu-devel@nongnu.org Cc: peter.maydell@linaro.org, Jan Kiszka , Jason Wang , Markus Armbruster , Samuel Thibault , brad@comstyle.com On 2018-08-27 04:22, Fam Zheng wrote: > This new usernet option can be used to add data for option 66 (tftp > server name) in the BOOTP reply, which is useful in PXE based automatic > OS install such as OpenBSD. > > Signed-off-by: Fam Zheng > --- > > v2: - Adjust parameter order and field placement to be closer to other > tftp options. [Samuel] > - Drop 'optional'. [Eric] > --- > net/slirp.c | 5 ++++- > qapi/net.json | 5 ++++- > slirp/bootp.c | 8 ++++++++ > slirp/bootp.h | 1 + > slirp/libslirp.h | 4 +++- > slirp/slirp.c | 5 ++++- > slirp/slirp.h | 1 + > 7 files changed, 25 insertions(+), 4 deletions(-) Please add information about this new parameter to the documentation in qemu-options.hx, too! Thomas