netdev.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* Re: [PATCH] xen-netback: remove duplicated function definition
  2015-07-03 19:33 [PATCH] xen-netback: remove duplicated function definition Liang Li
@ 2015-07-03 16:54 ` David Miller
  2015-07-04 15:43   ` Li, Liang Z
  2015-07-05 19:48 ` Wei Liu
  1 sibling, 1 reply; 4+ messages in thread
From: David Miller @ 2015-07-03 16:54 UTC (permalink / raw)
  To: liang.z.li; +Cc: linux-kernel, ian.campbell, wei.liu2, xen-devel, netdev

From: Liang Li <liang.z.li@intel.com>
Date: Sat,  4 Jul 2015 03:33:00 +0800

> There are two duplicated xenvif_zerocopy_callback() definitions.
> Remove one of them.
> 
> Signed-off-by: Liang Li <liang.z.li@intel.com>

You really need to fix the date on your computer.

If your date is in the future, as your's is, then your patch appears
out-of-order in the patchwork patch queue since it is ordered by the
Date: field in the email.

^ permalink raw reply	[flat|nested] 4+ messages in thread

* [PATCH] xen-netback: remove duplicated function definition
@ 2015-07-03 19:33 Liang Li
  2015-07-03 16:54 ` David Miller
  2015-07-05 19:48 ` Wei Liu
  0 siblings, 2 replies; 4+ messages in thread
From: Liang Li @ 2015-07-03 19:33 UTC (permalink / raw)
  To: linux-kernel; +Cc: ian.campbell, wei.liu2, xen-devel, netdev, Liang Li

There are two duplicated xenvif_zerocopy_callback() definitions.
Remove one of them.

Signed-off-by: Liang Li <liang.z.li@intel.com>
---
 drivers/net/xen-netback/common.h | 3 ---
 1 file changed, 3 deletions(-)

diff --git a/drivers/net/xen-netback/common.h b/drivers/net/xen-netback/common.h
index 8a495b3..c6cb85a 100644
--- a/drivers/net/xen-netback/common.h
+++ b/drivers/net/xen-netback/common.h
@@ -325,9 +325,6 @@ static inline pending_ring_idx_t nr_pending_reqs(struct xenvif_queue *queue)
 		queue->pending_prod + queue->pending_cons;
 }
 
-/* Callback from stack when TX packet can be released */
-void xenvif_zerocopy_callback(struct ubuf_info *ubuf, bool zerocopy_success);
-
 irqreturn_t xenvif_interrupt(int irq, void *dev_id);
 
 extern bool separate_tx_rx_irq;
-- 
1.9.1

^ permalink raw reply related	[flat|nested] 4+ messages in thread

* Re: [PATCH] xen-netback: remove duplicated function definition
  2015-07-03 16:54 ` David Miller
@ 2015-07-04 15:43   ` Li, Liang Z
  0 siblings, 0 replies; 4+ messages in thread
From: Li, Liang Z @ 2015-07-04 15:43 UTC (permalink / raw)
  To: David Miller
  Cc: xen-devel@lists.xenproject.org, netdev@vger.kernel.org,
	wei.liu2@citrix.com, linux-kernel@vger.kernel.org,
	ian.campbell@citrix.com

> Cc: linux-kernel@vger.kernel.org; ian.campbell@citrix.com;
> wei.liu2@citrix.com; xen-devel@lists.xenproject.org;
> netdev@vger.kernel.org
> Subject: Re: [PATCH] xen-netback: remove duplicated function definition
> 
> From: Liang Li <liang.z.li@intel.com>
> Date: Sat,  4 Jul 2015 03:33:00 +0800
> 
> > There are two duplicated xenvif_zerocopy_callback() definitions.
> > Remove one of them.
> >
> > Signed-off-by: Liang Li <liang.z.li@intel.com>
> 
> You really need to fix the date on your computer.
> 
> If your date is in the future, as your's is, then your patch appears out-of-
> order in the patchwork patch queue since it is ordered by the
> Date: field in the email.

OK. Thanks for your reminding.

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [PATCH] xen-netback: remove duplicated function definition
  2015-07-03 19:33 [PATCH] xen-netback: remove duplicated function definition Liang Li
  2015-07-03 16:54 ` David Miller
@ 2015-07-05 19:48 ` Wei Liu
  1 sibling, 0 replies; 4+ messages in thread
From: Wei Liu @ 2015-07-05 19:48 UTC (permalink / raw)
  To: Liang Li; +Cc: linux-kernel, ian.campbell, wei.liu2, xen-devel, netdev

On Sat, Jul 04, 2015 at 03:33:00AM +0800, Liang Li wrote:
> There are two duplicated xenvif_zerocopy_callback() definitions.
> Remove one of them.
> 
> Signed-off-by: Liang Li <liang.z.li@intel.com>

Acked-by: Wei Liu <wei.liu2@citrix.com>

Please fix the time of your computer and resend.

Wei.

> ---
>  drivers/net/xen-netback/common.h | 3 ---
>  1 file changed, 3 deletions(-)
> 
> diff --git a/drivers/net/xen-netback/common.h b/drivers/net/xen-netback/common.h
> index 8a495b3..c6cb85a 100644
> --- a/drivers/net/xen-netback/common.h
> +++ b/drivers/net/xen-netback/common.h
> @@ -325,9 +325,6 @@ static inline pending_ring_idx_t nr_pending_reqs(struct xenvif_queue *queue)
>  		queue->pending_prod + queue->pending_cons;
>  }
>  
> -/* Callback from stack when TX packet can be released */
> -void xenvif_zerocopy_callback(struct ubuf_info *ubuf, bool zerocopy_success);
> -
>  irqreturn_t xenvif_interrupt(int irq, void *dev_id);
>  
>  extern bool separate_tx_rx_irq;
> -- 
> 1.9.1

^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2015-07-05 19:48 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-07-03 19:33 [PATCH] xen-netback: remove duplicated function definition Liang Li
2015-07-03 16:54 ` David Miller
2015-07-04 15:43   ` Li, Liang Z
2015-07-05 19:48 ` Wei Liu

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).