* [PATCH] f_phonet: fix skb truesize underestimation
@ 2012-03-27 13:04 Eric Dumazet
2012-03-27 13:17 ` [PATCH] cdc-phonet: " Eric Dumazet
2012-03-28 2:51 ` [PATCH] f_phonet: " David Miller
0 siblings, 2 replies; 12+ messages in thread
From: Eric Dumazet @ 2012-03-27 13:04 UTC (permalink / raw)
To: David Miller
Cc: Greg Kroah-Hartman, linux-usb-u79uwXL29TY76Z2rM5mHXA, netdev,
Felipe Balbi, Rémi Denis-Courmont
Now skb_add_rx_frag() has a truesize parameter, we can fix f_phonet to
properly account truesize of each fragment : a full page.
Signed-off-by: Eric Dumazet <eric.dumazet-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org>
Cc: Felipe Balbi <balbi-l0cyMroinI0@public.gmane.org>
Cc: Greg Kroah-Hartman <gregkh-hQyY1W1yCW8ekmWlsbkhG0B+6BGkLq7r@public.gmane.org>
Cc: Rémi Denis-Courmont <remi.denis-courmont-xNZwKgViW5gAvxtiuMwx3w@public.gmane.org>
---
drivers/usb/gadget/f_phonet.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/drivers/usb/gadget/f_phonet.c b/drivers/usb/gadget/f_phonet.c
index 85a5ceb..965a629 100644
--- a/drivers/usb/gadget/f_phonet.c
+++ b/drivers/usb/gadget/f_phonet.c
@@ -345,7 +345,7 @@ static void pn_rx_complete(struct usb_ep *ep, struct usb_request *req)
}
skb_add_rx_frag(skb, skb_shinfo(skb)->nr_frags, page,
- skb->len <= 1, req->actual, req->actual);
+ skb->len <= 1, req->actual, PAGE_SIZE);
page = NULL;
if (req->actual < req->length) { /* Last fragment */
--
To unsubscribe from this list: send the line "unsubscribe linux-usb" in
the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
^ permalink raw reply related [flat|nested] 12+ messages in thread* [PATCH] cdc-phonet: fix skb truesize underestimation
2012-03-27 13:04 [PATCH] f_phonet: fix skb truesize underestimation Eric Dumazet
@ 2012-03-27 13:17 ` Eric Dumazet
2012-03-27 13:22 ` Rémi Denis-Courmont
2012-03-28 2:51 ` David Miller
2012-03-28 2:51 ` [PATCH] f_phonet: " David Miller
1 sibling, 2 replies; 12+ messages in thread
From: Eric Dumazet @ 2012-03-27 13:17 UTC (permalink / raw)
To: David Miller
Cc: Greg Kroah-Hartman, linux-usb, netdev, Felipe Balbi,
Rémi Denis-Courmont
Now skb_add_rx_frag() has a truesize parameter, we can fix cdc-phonet to
properly account truesize of each fragment : a full page.
Signed-off-by: Eric Dumazet <eric.dumazet@gmail.com>
Cc: Felipe Balbi <balbi@ti.com>
Cc: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Cc: Rémi Denis-Courmont <remi.denis-courmont@nokia.com>
---
drivers/net/usb/cdc-phonet.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/drivers/net/usb/cdc-phonet.c b/drivers/net/usb/cdc-phonet.c
index 3886b30..3e41b00 100644
--- a/drivers/net/usb/cdc-phonet.c
+++ b/drivers/net/usb/cdc-phonet.c
@@ -165,13 +165,13 @@ static void rx_complete(struct urb *req)
memcpy(skb_put(skb, 1), page_address(page), 1);
skb_add_rx_frag(skb, skb_shinfo(skb)->nr_frags,
page, 1, req->actual_length,
- req->actual_length);
+ PAGE_SIZE);
page = NULL;
}
} else {
skb_add_rx_frag(skb, skb_shinfo(skb)->nr_frags,
page, 0, req->actual_length,
- req->actual_length);
+ PAGE_SIZE);
page = NULL;
}
if (req->actual_length < PAGE_SIZE)
^ permalink raw reply related [flat|nested] 12+ messages in thread* Re: [PATCH] cdc-phonet: fix skb truesize underestimation
2012-03-27 13:17 ` [PATCH] cdc-phonet: " Eric Dumazet
@ 2012-03-27 13:22 ` Rémi Denis-Courmont
2012-03-28 2:51 ` David Miller
1 sibling, 0 replies; 12+ messages in thread
From: Rémi Denis-Courmont @ 2012-03-27 13:22 UTC (permalink / raw)
To: ext Eric Dumazet
Cc: David Miller, Greg Kroah-Hartman, linux-usb, netdev, Felipe Balbi
Le mardi 27 mars 2012 06:17:26 ext Eric Dumazet a écrit :
> Now skb_add_rx_frag() has a truesize parameter, we can fix cdc-phonet to
> properly account truesize of each fragment : a full page.
>
> Signed-off-by: Eric Dumazet <eric.dumazet@gmail.com>
> Cc: Felipe Balbi <balbi@ti.com>
> Cc: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
> Cc: Rémi Denis-Courmont <remi.denis-courmont@nokia.com>
Acked-by: Rémi Denis-Courmont <remi.denis-courmont@nokia.com>
--
Rémi Denis-Courmont
http://www.remlab.net/
^ permalink raw reply [flat|nested] 12+ messages in thread
* Re: [PATCH] cdc-phonet: fix skb truesize underestimation
2012-03-27 13:17 ` [PATCH] cdc-phonet: " Eric Dumazet
2012-03-27 13:22 ` Rémi Denis-Courmont
@ 2012-03-28 2:51 ` David Miller
1 sibling, 0 replies; 12+ messages in thread
From: David Miller @ 2012-03-28 2:51 UTC (permalink / raw)
To: eric.dumazet-Re5JQEeQqe8AvxtiuMwx3w
Cc: gregkh-hQyY1W1yCW8ekmWlsbkhG0B+6BGkLq7r,
linux-usb-u79uwXL29TY76Z2rM5mHXA, netdev-u79uwXL29TY76Z2rM5mHXA,
balbi-l0cyMroinI0, remi.denis-courmont-xNZwKgViW5gAvxtiuMwx3w
From: Eric Dumazet <eric.dumazet-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org>
Date: Tue, 27 Mar 2012 06:17:26 -0700
> Now skb_add_rx_frag() has a truesize parameter, we can fix cdc-phonet to
> properly account truesize of each fragment : a full page.
>
> Signed-off-by: Eric Dumazet <eric.dumazet-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org>
Applied.
--
To unsubscribe from this list: send the line "unsubscribe linux-usb" in
the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
^ permalink raw reply [flat|nested] 12+ messages in thread
* Re: [PATCH] f_phonet: fix skb truesize underestimation
2012-03-27 13:04 [PATCH] f_phonet: fix skb truesize underestimation Eric Dumazet
2012-03-27 13:17 ` [PATCH] cdc-phonet: " Eric Dumazet
@ 2012-03-28 2:51 ` David Miller
2012-03-28 8:55 ` Felipe Balbi
[not found] ` <20120327.225109.752822925052179338.davem-fT/PcQaiUtIeIZ0/mPfg9Q@public.gmane.org>
1 sibling, 2 replies; 12+ messages in thread
From: David Miller @ 2012-03-28 2:51 UTC (permalink / raw)
To: eric.dumazet; +Cc: gregkh, linux-usb, netdev, balbi, remi.denis-courmont
From: Eric Dumazet <eric.dumazet@gmail.com>
Date: Tue, 27 Mar 2012 06:04:02 -0700
> Now skb_add_rx_frag() has a truesize parameter, we can fix f_phonet to
> properly account truesize of each fragment : a full page.
>
> Signed-off-by: Eric Dumazet <eric.dumazet@gmail.com>
Applied.
^ permalink raw reply [flat|nested] 12+ messages in thread* Re: [PATCH] f_phonet: fix skb truesize underestimation
2012-03-28 2:51 ` [PATCH] f_phonet: " David Miller
@ 2012-03-28 8:55 ` Felipe Balbi
2012-03-28 9:33 ` David Miller
[not found] ` <20120327.225109.752822925052179338.davem-fT/PcQaiUtIeIZ0/mPfg9Q@public.gmane.org>
1 sibling, 1 reply; 12+ messages in thread
From: Felipe Balbi @ 2012-03-28 8:55 UTC (permalink / raw)
To: David Miller
Cc: eric.dumazet, gregkh, linux-usb, netdev, balbi,
remi.denis-courmont
[-- Attachment #1: Type: text/plain, Size: 420 bytes --]
On Tue, Mar 27, 2012 at 10:51:09PM -0400, David Miller wrote:
> From: Eric Dumazet <eric.dumazet@gmail.com>
> Date: Tue, 27 Mar 2012 06:04:02 -0700
>
> > Now skb_add_rx_frag() has a truesize parameter, we can fix f_phonet to
> > properly account truesize of each fragment : a full page.
> >
> > Signed-off-by: Eric Dumazet <eric.dumazet@gmail.com>
>
> Applied.
did you apply both patches ?
--
balbi
[-- Attachment #2: Digital signature --]
[-- Type: application/pgp-signature, Size: 836 bytes --]
^ permalink raw reply [flat|nested] 12+ messages in thread* Re: [PATCH] f_phonet: fix skb truesize underestimation
2012-03-28 8:55 ` Felipe Balbi
@ 2012-03-28 9:33 ` David Miller
[not found] ` <20120328.053310.219141897175161116.davem-fT/PcQaiUtIeIZ0/mPfg9Q@public.gmane.org>
0 siblings, 1 reply; 12+ messages in thread
From: David Miller @ 2012-03-28 9:33 UTC (permalink / raw)
To: balbi; +Cc: eric.dumazet, gregkh, linux-usb, netdev, remi.denis-courmont
From: Felipe Balbi <balbi@ti.com>
Date: Wed, 28 Mar 2012 11:55:36 +0300
> On Tue, Mar 27, 2012 at 10:51:09PM -0400, David Miller wrote:
>> From: Eric Dumazet <eric.dumazet@gmail.com>
>> Date: Tue, 27 Mar 2012 06:04:02 -0700
>>
>> > Now skb_add_rx_frag() has a truesize parameter, we can fix f_phonet to
>> > properly account truesize of each fragment : a full page.
>> >
>> > Signed-off-by: Eric Dumazet <eric.dumazet@gmail.com>
>>
>> Applied.
>
> did you apply both patches ?
You never need to ask me these kinds of questions, you can
either check my GIT tree or look at:
http://patchwork.ozlabs.org/project/netdev/list/?state=3
^ permalink raw reply [flat|nested] 12+ messages in thread
[parent not found: <20120327.225109.752822925052179338.davem-fT/PcQaiUtIeIZ0/mPfg9Q@public.gmane.org>]
* Re: [PATCH] f_phonet: fix skb truesize underestimation
[not found] ` <20120327.225109.752822925052179338.davem-fT/PcQaiUtIeIZ0/mPfg9Q@public.gmane.org>
@ 2012-03-29 6:30 ` Rémi Denis-Courmont
2012-03-29 6:46 ` Eric Dumazet
2012-03-29 6:51 ` David Miller
0 siblings, 2 replies; 12+ messages in thread
From: Rémi Denis-Courmont @ 2012-03-29 6:30 UTC (permalink / raw)
To: ext David Miller
Cc: eric.dumazet-Re5JQEeQqe8AvxtiuMwx3w,
gregkh-hQyY1W1yCW8ekmWlsbkhG0B+6BGkLq7r,
linux-usb-u79uwXL29TY76Z2rM5mHXA, netdev-u79uwXL29TY76Z2rM5mHXA,
balbi-l0cyMroinI0
Le mardi 27 mars 2012 22:51:09 ext David Miller a écrit :
> From: Eric Dumazet <eric.dumazet-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org>
> Date: Tue, 27 Mar 2012 06:04:02 -0700
>
> > Now skb_add_rx_frag() has a truesize parameter, we can fix f_phonet to
> > properly account truesize of each fragment : a full page.
> >
> > Signed-off-by: Eric Dumazet <eric.dumazet-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org>
>
> Applied.
Sorry for not reviewing. My evil corporate mail transfer agent apparently ate
that patch :-(
I guess I should use my personal email instead...
--
Rémi Denis-Courmont
http://www.remlab.net/
--
To unsubscribe from this list: send the line "unsubscribe linux-usb" in
the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
^ permalink raw reply [flat|nested] 12+ messages in thread* Re: [PATCH] f_phonet: fix skb truesize underestimation
2012-03-29 6:30 ` Rémi Denis-Courmont
@ 2012-03-29 6:46 ` Eric Dumazet
2012-03-29 6:51 ` David Miller
1 sibling, 0 replies; 12+ messages in thread
From: Eric Dumazet @ 2012-03-29 6:46 UTC (permalink / raw)
To: Rémi Denis-Courmont
Cc: ext David Miller, gregkh-hQyY1W1yCW8ekmWlsbkhG0B+6BGkLq7r,
linux-usb-u79uwXL29TY76Z2rM5mHXA, netdev-u79uwXL29TY76Z2rM5mHXA,
balbi-l0cyMroinI0
On Thu, 2012-03-29 at 09:30 +0300, Rémi Denis-Courmont wrote:
> Le mardi 27 mars 2012 22:51:09 ext David Miller a écrit :
> > From: Eric Dumazet <eric.dumazet-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org>
> > Date: Tue, 27 Mar 2012 06:04:02 -0700
> >
> > > Now skb_add_rx_frag() has a truesize parameter, we can fix f_phonet to
> > > properly account truesize of each fragment : a full page.
> > >
> > > Signed-off-by: Eric Dumazet <eric.dumazet-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org>
> >
> > Applied.
>
> Sorry for not reviewing. My evil corporate mail transfer agent apparently ate
> that patch :-(
>
> I guess I should use my personal email instead...
>
Thats true, I got a funny reject from your mail server, stating :
"Your domain is blocked with bad reputation defined by CommTouch: ...
(state 13)"
gmail.com has bad reputation ? Come on !
--
To unsubscribe from this list: send the line "unsubscribe linux-usb" in
the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
^ permalink raw reply [flat|nested] 12+ messages in thread
* Re: [PATCH] f_phonet: fix skb truesize underestimation
2012-03-29 6:30 ` Rémi Denis-Courmont
2012-03-29 6:46 ` Eric Dumazet
@ 2012-03-29 6:51 ` David Miller
1 sibling, 0 replies; 12+ messages in thread
From: David Miller @ 2012-03-29 6:51 UTC (permalink / raw)
To: remi.denis-courmont-xNZwKgViW5gAvxtiuMwx3w
Cc: eric.dumazet-Re5JQEeQqe8AvxtiuMwx3w,
gregkh-hQyY1W1yCW8ekmWlsbkhG0B+6BGkLq7r,
linux-usb-u79uwXL29TY76Z2rM5mHXA, netdev-u79uwXL29TY76Z2rM5mHXA,
balbi-l0cyMroinI0
From: Rémi Denis-Courmont <remi.denis-courmont-xNZwKgViW5gAvxtiuMwx3w@public.gmane.org>
Date: Thu, 29 Mar 2012 09:30:32 +0300
> I guess I should use my personal email instead...
nokia.com tends to eat 2 out of every 3 mailing list postings
on vger.kernel.org, so yes I'd say using person email would
be a good idea
--
To unsubscribe from this list: send the line "unsubscribe linux-usb" in
the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
^ permalink raw reply [flat|nested] 12+ messages in thread
end of thread, other threads:[~2012-03-29 6:51 UTC | newest]
Thread overview: 12+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-03-27 13:04 [PATCH] f_phonet: fix skb truesize underestimation Eric Dumazet
2012-03-27 13:17 ` [PATCH] cdc-phonet: " Eric Dumazet
2012-03-27 13:22 ` Rémi Denis-Courmont
2012-03-28 2:51 ` David Miller
2012-03-28 2:51 ` [PATCH] f_phonet: " David Miller
2012-03-28 8:55 ` Felipe Balbi
2012-03-28 9:33 ` David Miller
[not found] ` <20120328.053310.219141897175161116.davem-fT/PcQaiUtIeIZ0/mPfg9Q@public.gmane.org>
2012-03-28 12:43 ` Felipe Balbi
[not found] ` <20120328124314.GG28319-S8G//mZuvNWo5Im9Ml3/Zg@public.gmane.org>
2012-03-29 2:15 ` Paul Gortmaker
[not found] ` <20120327.225109.752822925052179338.davem-fT/PcQaiUtIeIZ0/mPfg9Q@public.gmane.org>
2012-03-29 6:30 ` Rémi Denis-Courmont
2012-03-29 6:46 ` Eric Dumazet
2012-03-29 6:51 ` David Miller
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).