Re: [PATCH v3 0/7] Convert skb_frag_t to bio_vec

2019-07-25 Thread Jonathan Lemon
On 22 Jul 2019, at 20:08, Matthew Wilcox wrote: > From: "Matthew Wilcox (Oracle)" > > The skb_frag_t and bio_vec are fundamentally the same (page, offset, > length) tuple. This patch series unifies the two, leaving the > skb_frag_t typedef in place. This has the immediate advantage that > we

Re: [PATCH v3 0/7] Convert skb_frag_t to bio_vec

2019-07-22 Thread David Miller
From: Matthew Wilcox Date: Mon, 22 Jul 2019 20:08:24 -0700 > From: "Matthew Wilcox (Oracle)" > > The skb_frag_t and bio_vec are fundamentally the same (page, offset, > length) tuple. This patch series unifies the two, leaving the > skb_frag_t typedef in place. This has the immediate advantage

[PATCH v3 0/7] Convert skb_frag_t to bio_vec

2019-07-22 Thread Matthew Wilcox
From: "Matthew Wilcox (Oracle)" The skb_frag_t and bio_vec are fundamentally the same (page, offset, length) tuple. This patch series unifies the two, leaving the skb_frag_t typedef in place. This has the immediate advantage that we already have iov_iter support for bvecs and don't need to add

Re: [PATCH v3 0/7] Convert skb_frag_t to bio_vec

2019-07-22 Thread David Miller
From: Matthew Wilcox Date: Mon, 22 Jul 2019 13:39:59 -0700 > No further feedback received, and the patches still apply cleanly to > Linus' head. Do you want the patch series resent, or does your workflow > let you just pick these patches up now? Please resend for net-next inclusion, thanks.

Re: [PATCH v3 0/7] Convert skb_frag_t to bio_vec

2019-07-22 Thread Matthew Wilcox
On Fri, Jul 12, 2019 at 11:27:07AM -0700, David Miller wrote: > From: Matthew Wilcox > Date: Fri, 12 Jul 2019 06:43:38 -0700 > > > From: "Matthew Wilcox (Oracle)" > > > > The skb_frag_t and bio_vec are fundamentally the same (page, offset, > > length) tuple. This patch series unifies the two,

Re: [PATCH v3 0/7] Convert skb_frag_t to bio_vec

2019-07-12 Thread David Miller
From: Matthew Wilcox Date: Fri, 12 Jul 2019 06:43:38 -0700 > From: "Matthew Wilcox (Oracle)" > > The skb_frag_t and bio_vec are fundamentally the same (page, offset, > length) tuple. This patch series unifies the two, leaving the > skb_frag_t typedef in place. This has the immediate advantage

[PATCH v3 0/7] Convert skb_frag_t to bio_vec

2019-07-12 Thread Matthew Wilcox
From: "Matthew Wilcox (Oracle)" The skb_frag_t and bio_vec are fundamentally the same (page, offset, length) tuple. This patch series unifies the two, leaving the skb_frag_t typedef in place. This has the immediate advantage that we already have iov_iter support for bvecs and don't need to add