From: Sarah Sharp <sarah.a.sharp@linux.intel.com>
To: Girish Verma <girish@circuitsutra.com>
Cc: kernel-janitors@vger.kernel.org, linux-usb@vger.kernel.org,
linux-kernel@vger.kernel.org, gregkh@linuxfoundation.org
Subject: Re: [PATCH] USB: XHCI: xhci-ring: Remove unused dma address calculation in inc_enq and inc_deq funct
Date: Wed, 05 Sep 2012 22:47:23 +0000 [thread overview]
Message-ID: <20120905224723.GD8975@xanatos> (raw)
In-Reply-To: <1336922942.3945.12.camel@cst-girish-laptop>
Hi Girish,
Sorry for taking a really long time to respond! This is a good idea,
but your patch doesn't apply any more. Can you update it against the
latest kernel and resend it?
Sarah Sharp
On Sun, May 13, 2012 at 08:59:02PM +0530, Girish Verma wrote:
> In xhci-ring.c, function inc_enq and inc_deq calculate the dma address
> of trb but never used.
>
> Signed-off-by: Girish Verma <girish@circuitsutra.com>
> ---
> drivers/usb/host/xhci-ring.c | 4 ----
> 1 files changed, 0 insertions(+), 4 deletions(-)
>
> diff --git a/drivers/usb/host/xhci-ring.c b/drivers/usb/host/xhci-ring.c
> index 3d9422f..dcd67c1 100644
> --- a/drivers/usb/host/xhci-ring.c
> +++ b/drivers/usb/host/xhci-ring.c
> @@ -146,7 +146,6 @@ static void next_trb(struct xhci_hcd *xhci,
> static void inc_deq(struct xhci_hcd *xhci, struct xhci_ring *ring)
> {
> union xhci_trb *next;
> - unsigned long long addr;
>
> ring->deq_updates++;
>
> @@ -168,7 +167,6 @@ static void inc_deq(struct xhci_hcd *xhci, struct xhci_ring *ring)
> ring->dequeue = ring->deq_seg->trbs;
> next = ring->dequeue;
> }
> - addr = (unsigned long long) xhci_trb_virt_to_dma(ring->deq_seg, ring->dequeue);
> }
>
> /*
> @@ -193,7 +191,6 @@ static void inc_enq(struct xhci_hcd *xhci, struct xhci_ring *ring,
> {
> u32 chain;
> union xhci_trb *next;
> - unsigned long long addr;
>
> chain = le32_to_cpu(ring->enqueue->generic.field[3]) & TRB_CHAIN;
> /* If this is not event ring, there is one less usable TRB */
> @@ -245,7 +242,6 @@ static void inc_enq(struct xhci_hcd *xhci, struct xhci_ring *ring,
> ring->enqueue = ring->enq_seg->trbs;
> next = ring->enqueue;
> }
> - addr = (unsigned long long) xhci_trb_virt_to_dma(ring->enq_seg, ring->enqueue);
> }
>
> /*
> --
>
>
WARNING: multiple messages have this Message-ID (diff)
From: Sarah Sharp <sarah.a.sharp@linux.intel.com>
To: Girish Verma <girish@circuitsutra.com>
Cc: kernel-janitors@vger.kernel.org, linux-usb@vger.kernel.org,
linux-kernel@vger.kernel.org, gregkh@linuxfoundation.org
Subject: Re: [PATCH] USB: XHCI: xhci-ring: Remove unused dma address calculation in inc_enq and inc_deq function
Date: Wed, 5 Sep 2012 15:47:23 -0700 [thread overview]
Message-ID: <20120905224723.GD8975@xanatos> (raw)
In-Reply-To: <1336922942.3945.12.camel@cst-girish-laptop>
Hi Girish,
Sorry for taking a really long time to respond! This is a good idea,
but your patch doesn't apply any more. Can you update it against the
latest kernel and resend it?
Sarah Sharp
On Sun, May 13, 2012 at 08:59:02PM +0530, Girish Verma wrote:
> In xhci-ring.c, function inc_enq and inc_deq calculate the dma address
> of trb but never used.
>
> Signed-off-by: Girish Verma <girish@circuitsutra.com>
> ---
> drivers/usb/host/xhci-ring.c | 4 ----
> 1 files changed, 0 insertions(+), 4 deletions(-)
>
> diff --git a/drivers/usb/host/xhci-ring.c b/drivers/usb/host/xhci-ring.c
> index 3d9422f..dcd67c1 100644
> --- a/drivers/usb/host/xhci-ring.c
> +++ b/drivers/usb/host/xhci-ring.c
> @@ -146,7 +146,6 @@ static void next_trb(struct xhci_hcd *xhci,
> static void inc_deq(struct xhci_hcd *xhci, struct xhci_ring *ring)
> {
> union xhci_trb *next;
> - unsigned long long addr;
>
> ring->deq_updates++;
>
> @@ -168,7 +167,6 @@ static void inc_deq(struct xhci_hcd *xhci, struct xhci_ring *ring)
> ring->dequeue = ring->deq_seg->trbs;
> next = ring->dequeue;
> }
> - addr = (unsigned long long) xhci_trb_virt_to_dma(ring->deq_seg, ring->dequeue);
> }
>
> /*
> @@ -193,7 +191,6 @@ static void inc_enq(struct xhci_hcd *xhci, struct xhci_ring *ring,
> {
> u32 chain;
> union xhci_trb *next;
> - unsigned long long addr;
>
> chain = le32_to_cpu(ring->enqueue->generic.field[3]) & TRB_CHAIN;
> /* If this is not event ring, there is one less usable TRB */
> @@ -245,7 +242,6 @@ static void inc_enq(struct xhci_hcd *xhci, struct xhci_ring *ring,
> ring->enqueue = ring->enq_seg->trbs;
> next = ring->enqueue;
> }
> - addr = (unsigned long long) xhci_trb_virt_to_dma(ring->enq_seg, ring->enqueue);
> }
>
> /*
> --
>
>
next prev parent reply other threads:[~2012-09-05 22:47 UTC|newest]
Thread overview: 18+ messages / expand[flat|nested] mbox.gz Atom feed top
2012-05-13 15:29 [PATCH] USB: XHCI: xhci-ring: Remove unused dma address calculation in inc_enq and inc_deq function Girish Verma
2012-05-13 15:41 ` Girish Verma
2012-09-05 22:47 ` Sarah Sharp [this message]
2012-09-05 22:47 ` Sarah Sharp
2012-09-06 15:47 ` Girish Verma
2012-09-06 15:59 ` Girish Verma
2012-09-06 18:28 ` [PATCH] USB: XHCI: xhci-ring: Remove unused dma address calculation in inc_enq and inc_deq funct Sarah Sharp
2012-09-06 18:28 ` [PATCH] USB: XHCI: xhci-ring: Remove unused dma address calculation in inc_enq and inc_deq function Sarah Sharp
2012-11-11 23:36 ` [PATCH] USB: XHCI: xhci-ring: Remove unused dma address calculation in inc_enq and inc_deq funct Yuhong Bao
2012-11-11 23:36 ` [PATCH] USB: XHCI: xhci-ring: Remove unused dma address calculation in inc_enq and inc_deq function Yuhong Bao
2012-09-07 10:46 ` [PATCH] USB: XHCI: xhci-ring: Remove unused dma address calculation in inc_enq and inc_deq funct Sergei Shtylyov
2012-09-07 10:46 ` [PATCH] USB: XHCI: xhci-ring: Remove unused dma address calculation in inc_enq and inc_deq function Sergei Shtylyov
-- strict thread matches above, loose matches on Subject: below --
2012-05-13 1:06 Girish Verma
2012-05-13 1:18 ` Girish Verma
2012-05-13 13:34 ` [PATCH] USB: XHCI: xhci-ring: Remove unused dma address calculation in inc_enq and inc_deq funct Sergei Shtylyov
2012-05-13 13:34 ` [PATCH] USB: XHCI: xhci-ring: Remove unused dma address calculation in inc_enq and inc_deq function Sergei Shtylyov
2012-05-13 14:00 ` Girish Verma
2012-05-13 14:12 ` [PATCH] USB: XHCI: xhci-ring: Remove unused dma address calculation in inc_enq and inc_deq funct Girish Verma
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=20120905224723.GD8975@xanatos \
--to=sarah.a.sharp@linux.intel.com \
--cc=girish@circuitsutra.com \
--cc=gregkh@linuxfoundation.org \
--cc=kernel-janitors@vger.kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-usb@vger.kernel.org \
/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.