* [PATCH v3 1/7] usb: host: xhci: fix hcd private size
@ 2015-10-26 8:12 Yoshihiro Shimoda
2015-10-26 14:26 ` Felipe Balbi
` (3 more replies)
0 siblings, 4 replies; 5+ messages in thread
From: Yoshihiro Shimoda @ 2015-10-26 8:12 UTC (permalink / raw)
To: linux-sh
This patch fixes the hcd private size to sutabile size.
The previous code has "sizeof(struct xhci_hcd *)" in xhci_hc_driver
as hcd_priv_size and sizeof(struct xhci_hcd) in xhci_plat_overrides
or xhci_pci_overrides as extra_priv_size. However, the xhci driver
uses a "sizeof(struct xhcd_hcd)" memory space in each hcd
(main_hcd and shared_hcd) actually.
Signed-off-by: Yoshihiro Shimoda <yoshihiro.shimoda.uh@renesas.com>
---
drivers/usb/host/xhci-pci.c | 1 -
drivers/usb/host/xhci-plat.c | 1 -
drivers/usb/host/xhci.c | 2 +-
3 files changed, 1 insertion(+), 3 deletions(-)
diff --git a/drivers/usb/host/xhci-pci.c b/drivers/usb/host/xhci-pci.c
index 17f6897..b51ac63 100644
--- a/drivers/usb/host/xhci-pci.c
+++ b/drivers/usb/host/xhci-pci.c
@@ -53,7 +53,6 @@ static struct hc_driver __read_mostly xhci_pci_hc_driver;
static int xhci_pci_setup(struct usb_hcd *hcd);
static const struct xhci_driver_overrides xhci_pci_overrides __initconst = {
- .extra_priv_size = sizeof(struct xhci_hcd),
.reset = xhci_pci_setup,
};
diff --git a/drivers/usb/host/xhci-plat.c b/drivers/usb/host/xhci-plat.c
index 05647e6..4699c1e 100644
--- a/drivers/usb/host/xhci-plat.c
+++ b/drivers/usb/host/xhci-plat.c
@@ -31,7 +31,6 @@ static int xhci_plat_setup(struct usb_hcd *hcd);
static int xhci_plat_start(struct usb_hcd *hcd);
static const struct xhci_driver_overrides xhci_plat_overrides __initconst = {
- .extra_priv_size = sizeof(struct xhci_hcd),
.reset = xhci_plat_setup,
.start = xhci_plat_start,
};
diff --git a/drivers/usb/host/xhci.c b/drivers/usb/host/xhci.c
index 6e7dc6f..c295785 100644
--- a/drivers/usb/host/xhci.c
+++ b/drivers/usb/host/xhci.c
@@ -4942,7 +4942,7 @@ EXPORT_SYMBOL_GPL(xhci_gen_setup);
static const struct hc_driver xhci_hc_driver = {
.description = "xhci-hcd",
.product_desc = "xHCI Host Controller",
- .hcd_priv_size = sizeof(struct xhci_hcd *),
+ .hcd_priv_size = sizeof(struct xhci_hcd),
/*
* generic hardware linkage
--
1.9.1
^ permalink raw reply related [flat|nested] 5+ messages in thread
* Re: [PATCH v3 1/7] usb: host: xhci: fix hcd private size
2015-10-26 8:12 [PATCH v3 1/7] usb: host: xhci: fix hcd private size Yoshihiro Shimoda
@ 2015-10-26 14:26 ` Felipe Balbi
2015-10-27 0:26 ` Yoshihiro Shimoda
` (2 subsequent siblings)
3 siblings, 0 replies; 5+ messages in thread
From: Felipe Balbi @ 2015-10-26 14:26 UTC (permalink / raw)
To: linux-sh
[-- Attachment #1: Type: text/plain, Size: 839 bytes --]
Hi,
Yoshihiro Shimoda <yoshihiro.shimoda.uh@renesas.com> writes:
> This patch fixes the hcd private size to sutabile size.
^^^^^^^^
suitable
> The previous code has "sizeof(struct xhci_hcd *)" in xhci_hc_driver
> as hcd_priv_size and sizeof(struct xhci_hcd) in xhci_plat_overrides
> or xhci_pci_overrides as extra_priv_size. However, the xhci driver
> uses a "sizeof(struct xhcd_hcd)" memory space in each hcd
> (main_hcd and shared_hcd) actually.
Nothing against the patch itself, but you're describing what exactly
you're fixing. Did you find a bug because of this or is this basically a
cleanup ? Your subject says you're "fixing" hcd private size, but I
don't how this could be fixing anything. Care to explain ?
--
balbi
[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 818 bytes --]
^ permalink raw reply [flat|nested] 5+ messages in thread
* RE: [PATCH v3 1/7] usb: host: xhci: fix hcd private size
2015-10-26 8:12 [PATCH v3 1/7] usb: host: xhci: fix hcd private size Yoshihiro Shimoda
2015-10-26 14:26 ` Felipe Balbi
@ 2015-10-27 0:26 ` Yoshihiro Shimoda
2015-10-27 14:45 ` Felipe Balbi
2015-10-28 14:31 ` Mathias Nyman
3 siblings, 0 replies; 5+ messages in thread
From: Yoshihiro Shimoda @ 2015-10-27 0:26 UTC (permalink / raw)
To: linux-sh
Hi,
> From: Felipe Balbi [mailto:balbi@ti.com]
> Sent: Monday, October 26, 2015 11:27 PM
>
> Hi,
>
> Yoshihiro Shimoda <yoshihiro.shimoda.uh@renesas.com> writes:
> > This patch fixes the hcd private size to sutabile size.
> ^^^^^^^^
> suitable
Oops, Thank you for the point.
> > The previous code has "sizeof(struct xhci_hcd *)" in xhci_hc_driver
> > as hcd_priv_size and sizeof(struct xhci_hcd) in xhci_plat_overrides
> > or xhci_pci_overrides as extra_priv_size. However, the xhci driver
> > uses a "sizeof(struct xhcd_hcd)" memory space in each hcd
> > (main_hcd and shared_hcd) actually.
>
> Nothing against the patch itself, but you're describing what exactly
> you're fixing. Did you find a bug because of this or is this basically a
> cleanup ? Your subject says you're "fixing" hcd private size, but I
> don't how this could be fixing anything. Care to explain ?
My description is wrong. This is basically a cleanup. I don't find any bugs.
So, I will fix this subject and description in v4.
Best regards,
Yoshihiro Shimoda
> --
> balbi
^ permalink raw reply [flat|nested] 5+ messages in thread
* RE: [PATCH v3 1/7] usb: host: xhci: fix hcd private size
2015-10-26 8:12 [PATCH v3 1/7] usb: host: xhci: fix hcd private size Yoshihiro Shimoda
2015-10-26 14:26 ` Felipe Balbi
2015-10-27 0:26 ` Yoshihiro Shimoda
@ 2015-10-27 14:45 ` Felipe Balbi
2015-10-28 14:31 ` Mathias Nyman
3 siblings, 0 replies; 5+ messages in thread
From: Felipe Balbi @ 2015-10-27 14:45 UTC (permalink / raw)
To: linux-sh
[-- Attachment #1: Type: text/plain, Size: 1252 bytes --]
Hi,
Yoshihiro Shimoda <yoshihiro.shimoda.uh@renesas.com> writes:
> Hi,
>
>> From: Felipe Balbi [mailto:balbi@ti.com]
>> Sent: Monday, October 26, 2015 11:27 PM
>>
>> Hi,
>>
>> Yoshihiro Shimoda <yoshihiro.shimoda.uh@renesas.com> writes:
>> > This patch fixes the hcd private size to sutabile size.
>> ^^^^^^^^
>> suitable
>
> Oops, Thank you for the point.
>
>> > The previous code has "sizeof(struct xhci_hcd *)" in xhci_hc_driver
>> > as hcd_priv_size and sizeof(struct xhci_hcd) in xhci_plat_overrides
>> > or xhci_pci_overrides as extra_priv_size. However, the xhci driver
>> > uses a "sizeof(struct xhcd_hcd)" memory space in each hcd
>> > (main_hcd and shared_hcd) actually.
>>
>> Nothing against the patch itself, but you're describing what exactly
>> you're fixing. Did you find a bug because of this or is this basically a
>> cleanup ? Your subject says you're "fixing" hcd private size, but I
>> don't how this could be fixing anything. Care to explain ?
>
> My description is wrong. This is basically a cleanup. I don't find any bugs.
> So, I will fix this subject and description in v4.
thank you :-)
--
balbi
[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 818 bytes --]
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [PATCH v3 1/7] usb: host: xhci: fix hcd private size
2015-10-26 8:12 [PATCH v3 1/7] usb: host: xhci: fix hcd private size Yoshihiro Shimoda
` (2 preceding siblings ...)
2015-10-27 14:45 ` Felipe Balbi
@ 2015-10-28 14:31 ` Mathias Nyman
3 siblings, 0 replies; 5+ messages in thread
From: Mathias Nyman @ 2015-10-28 14:31 UTC (permalink / raw)
To: linux-sh
On 26.10.2015 10:12, Yoshihiro Shimoda wrote:
> This patch fixes the hcd private size to sutabile size.
> The previous code has "sizeof(struct xhci_hcd *)" in xhci_hc_driver
> as hcd_priv_size and sizeof(struct xhci_hcd) in xhci_plat_overrides
> or xhci_pci_overrides as extra_priv_size. However, the xhci driver
> uses a "sizeof(struct xhcd_hcd)" memory space in each hcd
> (main_hcd and shared_hcd) actually.
>
> Signed-off-by: Yoshihiro Shimoda <yoshihiro.shimoda.uh@renesas.com>
> ---
> drivers/usb/host/xhci-pci.c | 1 -
> drivers/usb/host/xhci-plat.c | 1 -
> drivers/usb/host/xhci.c | 2 +-
> 3 files changed, 1 insertion(+), 3 deletions(-)
>
> diff --git a/drivers/usb/host/xhci-pci.c b/drivers/usb/host/xhci-pci.c
> index 17f6897..b51ac63 100644
> --- a/drivers/usb/host/xhci-pci.c
> +++ b/drivers/usb/host/xhci-pci.c
> @@ -53,7 +53,6 @@ static struct hc_driver __read_mostly xhci_pci_hc_driver;
> static int xhci_pci_setup(struct usb_hcd *hcd);
>
> static const struct xhci_driver_overrides xhci_pci_overrides __initconst = {
> - .extra_priv_size = sizeof(struct xhci_hcd),
> .reset = xhci_pci_setup,
> };
>
> diff --git a/drivers/usb/host/xhci-plat.c b/drivers/usb/host/xhci-plat.c
> index 05647e6..4699c1e 100644
> --- a/drivers/usb/host/xhci-plat.c
> +++ b/drivers/usb/host/xhci-plat.c
> @@ -31,7 +31,6 @@ static int xhci_plat_setup(struct usb_hcd *hcd);
> static int xhci_plat_start(struct usb_hcd *hcd);
>
> static const struct xhci_driver_overrides xhci_plat_overrides __initconst = {
> - .extra_priv_size = sizeof(struct xhci_hcd),
> .reset = xhci_plat_setup,
> .start = xhci_plat_start,
> };
> diff --git a/drivers/usb/host/xhci.c b/drivers/usb/host/xhci.c
> index 6e7dc6f..c295785 100644
> --- a/drivers/usb/host/xhci.c
> +++ b/drivers/usb/host/xhci.c
> @@ -4942,7 +4942,7 @@ EXPORT_SYMBOL_GPL(xhci_gen_setup);
> static const struct hc_driver xhci_hc_driver = {
> .description = "xhci-hcd",
> .product_desc = "xHCI Host Controller",
> - .hcd_priv_size = sizeof(struct xhci_hcd *),
> + .hcd_priv_size = sizeof(struct xhci_hcd),
>
> /*
> * generic hardware linkage
>
Seems that when changing from storing a xhci_hcd pointer to storing the whole xhci_hcd structure
in hcd->hcd_priv we accidentally left the extra sizeof(struct xhci_hcd *) in the .hcd_priv_size
Also setting the .hcd_priv_size = sizeof(struct xhci_hcd) when creating struct hc_driver xhci_hc_driver,
instead of in the .extra_priv_size seems like the correct way to do it.
Thanks for the fixes
-Mathias
^ permalink raw reply [flat|nested] 5+ messages in thread
end of thread, other threads:[~2015-10-28 14:31 UTC | newest]
Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-10-26 8:12 [PATCH v3 1/7] usb: host: xhci: fix hcd private size Yoshihiro Shimoda
2015-10-26 14:26 ` Felipe Balbi
2015-10-27 0:26 ` Yoshihiro Shimoda
2015-10-27 14:45 ` Felipe Balbi
2015-10-28 14:31 ` Mathias Nyman
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).