All of lore.kernel.org
 help / color / mirror / Atom feed
From: Jason Wang <jasowang@redhat.com>
To: Yang Hongyang <yanghy@cn.fujitsu.com>, qemu-devel@nongnu.org
Cc: thuth@redhat.com, zhang.zhanghailiang@huawei.com,
	lizhijian@cn.fujitsu.com, eddie.dong@intel.com,
	Markus Armbruster <armbru@redhat.com>,
	mrhines@linux.vnet.ibm.com,
	Luiz Capitulino <lcapitulino@redhat.com>,
	stefanha@redhat.com
Subject: Re: [Qemu-devel] [PATCH v4 10/11] filter/buffer: update command description and help
Date: Thu, 06 Aug 2015 15:22:03 +0800	[thread overview]
Message-ID: <55C30B1B.3000202@redhat.com> (raw)
In-Reply-To: <1438677044-13030-11-git-send-email-yanghy@cn.fujitsu.com>



On 08/04/2015 04:30 PM, Yang Hongyang wrote:
> now that we have a buffer netfilter, update the command
> description and help.
>
> Signed-off-by: Yang Hongyang <yanghy@cn.fujitsu.com>
> CC: Luiz Capitulino <lcapitulino@redhat.com>
> CC: Markus Armbruster <armbru@redhat.com>
> ---
>  hmp-commands.hx | 2 +-
>  qemu-options.hx | 5 ++++-
>  qmp-commands.hx | 2 +-
>  3 files changed, 6 insertions(+), 3 deletions(-)
>
> diff --git a/hmp-commands.hx b/hmp-commands.hx
> index 902e2d1..63177a8 100644
> --- a/hmp-commands.hx
> +++ b/hmp-commands.hx
> @@ -1255,7 +1255,7 @@ ETEXI
>      {
>          .name       = "netfilter_add",
>          .args_type  = "netfilter:O",
> -        .params     = "[type],id=str,netdev=str[,chain=in|out|all,prop=value][,...]",
> +        .params     = "[buffer],id=str,netdev=str[,chain=in|out|all,prop=value][,...]",

Looks like chain is mandatory in patch 2.

>          .help       = "add netfilter",
>          .mhandler.cmd = hmp_netfilter_add,
>          .command_completion = netfilter_add_completion,
> diff --git a/qemu-options.hx b/qemu-options.hx
> index 0d52d02..eeaf2a1 100644
> --- a/qemu-options.hx
> +++ b/qemu-options.hx
> @@ -1575,7 +1575,10 @@ DEF("net", HAS_ARG, QEMU_OPTION_net,
>      "socket][,vlan=n][,option][,option][,...]\n"
>      "                old way to initialize a host network interface\n"
>      "                (use the -netdev option if possible instead)\n", QEMU_ARCH_ALL)
> -DEF("netfilter", HAS_ARG, QEMU_OPTION_netfilter, "", QEMU_ARCH_ALL)
> +DEF("netfilter", HAS_ARG, QEMU_OPTION_netfilter,
> +    "-netfilter buffer,id=str,netdev=str[,chain=in|out|all,interval=n]\n"
> +    "                buffer netdev in/out packets. if interval provided, will release\n"
> +    "                packets by interval. interval scale: microsecond\n", QEMU_ARCH_ALL)
>  STEXI
>  @item -net nic[,vlan=@var{n}][,macaddr=@var{mac}][,model=@var{type}] [,name=@var{name}][,addr=@var{addr}][,vectors=@var{v}]
>  @findex -net
> diff --git a/qmp-commands.hx b/qmp-commands.hx
> index 4f0dc98..9419a6f 100644
> --- a/qmp-commands.hx
> +++ b/qmp-commands.hx
> @@ -947,7 +947,7 @@ Arguments:
>  Example:
>  
>  -> { "execute": "netfilter_add",
> -                "arguments": { "type": "type", "id": "nf0",
> +                "arguments": { "type": "buffer", "id": "nf0",
>                                 "netdev": "bn",
>                                 "chain": "in" } }
>  <- { "return": {} }

  reply	other threads:[~2015-08-06  7:22 UTC|newest]

Thread overview: 37+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2015-08-04  8:30 [Qemu-devel] [PATCH v4 00/11] For QEMU 2.5: Add a netfilter object and netbuffer filter Yang Hongyang
2015-08-04  8:30 ` [Qemu-devel] [PATCH v4 01/11] net: add a new object netfilter Yang Hongyang
2015-08-04  8:30 ` [Qemu-devel] [PATCH v4 02/11] init/cleanup of netfilter object Yang Hongyang
2015-08-06  7:07   ` Jason Wang
2015-08-06  7:22     ` Yang Hongyang
2015-08-06  7:29       ` Jason Wang
2015-08-06  7:35         ` Yang Hongyang
2015-08-06  7:43           ` Jason Wang
2015-08-06  7:50             ` Yang Hongyang
2015-08-06  7:53               ` Jason Wang
2015-08-04  8:30 ` [Qemu-devel] [PATCH v4 03/11] netfilter: add netfilter_{add|del} commands Yang Hongyang
2015-08-04  8:30 ` [Qemu-devel] [PATCH v4 04/11] net: delete netfilter object when delete netdev Yang Hongyang
2015-08-06  7:09   ` Jason Wang
2015-08-06  7:22     ` Yang Hongyang
2015-08-06  8:44     ` Yang Hongyang
2015-08-06  9:14       ` Jason Wang
2015-08-04  8:30 ` [Qemu-devel] [PATCH v4 05/11] netfilter: hook packets before net queue send Yang Hongyang
2015-08-06  7:13   ` Jason Wang
2015-08-06  7:28     ` Yang Hongyang
2015-08-06  7:37       ` Jason Wang
2015-08-06  7:58         ` Yang Hongyang
2015-08-04  8:30 ` [Qemu-devel] [PATCH v4 06/11] netfilter: add an API to pass the packet to next filter Yang Hongyang
2015-08-06  7:16   ` Jason Wang
2015-08-06  7:29     ` Yang Hongyang
2015-08-04  8:30 ` [Qemu-devel] [PATCH v4 07/11] net/queue: export qemu_net_queue_append_iov Yang Hongyang
2015-08-04  8:30 ` [Qemu-devel] [PATCH v4 08/11] move out net queue structs define Yang Hongyang
2015-08-04  8:30 ` [Qemu-devel] [PATCH v4 09/11] netfilter: add a netbuffer filter Yang Hongyang
2015-08-06  7:21   ` Jason Wang
2015-08-06  8:19     ` Yang Hongyang
2015-08-06  9:09       ` Jason Wang
2015-08-06  9:23         ` Yang Hongyang
2015-08-06  9:35           ` Jason Wang
2015-08-04  8:30 ` [Qemu-devel] [PATCH v4 10/11] filter/buffer: update command description and help Yang Hongyang
2015-08-06  7:22   ` Jason Wang [this message]
2015-08-06  7:31     ` Yang Hongyang
2015-08-06  7:39       ` Jason Wang
2015-08-04  8:30 ` [Qemu-devel] [PATCH v4 11/11] tests: add test cases for netfilter object Yang Hongyang

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=55C30B1B.3000202@redhat.com \
    --to=jasowang@redhat.com \
    --cc=armbru@redhat.com \
    --cc=eddie.dong@intel.com \
    --cc=lcapitulino@redhat.com \
    --cc=lizhijian@cn.fujitsu.com \
    --cc=mrhines@linux.vnet.ibm.com \
    --cc=qemu-devel@nongnu.org \
    --cc=stefanha@redhat.com \
    --cc=thuth@redhat.com \
    --cc=yanghy@cn.fujitsu.com \
    --cc=zhang.zhanghailiang@huawei.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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.