* [RESEND PATCH] fscache: Remove duplicate included header
@ 2024-06-28 6:23 Thorsten Blum
2024-06-28 8:44 ` Christian Brauner
` (3 more replies)
0 siblings, 4 replies; 8+ messages in thread
From: Thorsten Blum @ 2024-06-28 6:23 UTC (permalink / raw)
To: dhowells, jlayton
Cc: netfs, linux-fsdevel, linux-kernel, Thorsten Blum, Simon Horman
Remove duplicate included header file linux/uio.h
Reviewed-by: Simon Horman <horms@kernel.org>
Signed-off-by: Thorsten Blum <thorsten.blum@toblux.com>
---
fs/netfs/fscache_io.c | 1 -
1 file changed, 1 deletion(-)
diff --git a/fs/netfs/fscache_io.c b/fs/netfs/fscache_io.c
index 38637e5c9b57..b1722a82c03d 100644
--- a/fs/netfs/fscache_io.c
+++ b/fs/netfs/fscache_io.c
@@ -9,7 +9,6 @@
#include <linux/uio.h>
#include <linux/bvec.h>
#include <linux/slab.h>
-#include <linux/uio.h>
#include "internal.h"
/**
--
2.45.2
^ permalink raw reply related [flat|nested] 8+ messages in thread
* Re: [RESEND PATCH] fscache: Remove duplicate included header
2024-06-28 6:23 [RESEND PATCH] fscache: Remove duplicate included header Thorsten Blum
@ 2024-06-28 8:44 ` Christian Brauner
2024-08-29 12:29 ` Thorsten Blum
2024-06-28 10:04 ` Jeff Layton
` (2 subsequent siblings)
3 siblings, 1 reply; 8+ messages in thread
From: Christian Brauner @ 2024-06-28 8:44 UTC (permalink / raw)
To: Thorsten Blum
Cc: Christian Brauner, netfs, linux-fsdevel, linux-kernel,
Simon Horman, dhowells, jlayton
On Fri, 28 Jun 2024 08:23:30 +0200, Thorsten Blum wrote:
> Remove duplicate included header file linux/uio.h
>
>
Applied to the vfs.netfs branch of the vfs/vfs.git tree.
Patches in the vfs.netfs branch should appear in linux-next soon.
Please report any outstanding bugs that were missed during review in a
new review to the original patch series allowing us to drop it.
It's encouraged to provide Acked-bys and Reviewed-bys even though the
patch has now been applied. If possible patch trailers will be updated.
Note that commit hashes shown below are subject to change due to rebase,
trailer updates or similar. If in doubt, please check the listed branch.
tree: https://git.kernel.org/pub/scm/linux/kernel/git/vfs/vfs.git
branch: vfs.netfs
[1/1] fscache: Remove duplicate included header
https://git.kernel.org/vfs/vfs/c/5094b901bedc
^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: [RESEND PATCH] fscache: Remove duplicate included header
2024-06-28 6:23 [RESEND PATCH] fscache: Remove duplicate included header Thorsten Blum
2024-06-28 8:44 ` Christian Brauner
@ 2024-06-28 10:04 ` Jeff Layton
2024-08-30 13:16 ` Christian Brauner
2024-11-20 8:27 ` Christian Brauner
3 siblings, 0 replies; 8+ messages in thread
From: Jeff Layton @ 2024-06-28 10:04 UTC (permalink / raw)
To: Thorsten Blum, dhowells; +Cc: netfs, linux-fsdevel, linux-kernel, Simon Horman
On Fri, 2024-06-28 at 08:23 +0200, Thorsten Blum wrote:
> Remove duplicate included header file linux/uio.h
>
> Reviewed-by: Simon Horman <horms@kernel.org>
> Signed-off-by: Thorsten Blum <thorsten.blum@toblux.com>
> ---
> fs/netfs/fscache_io.c | 1 -
> 1 file changed, 1 deletion(-)
>
> diff --git a/fs/netfs/fscache_io.c b/fs/netfs/fscache_io.c
> index 38637e5c9b57..b1722a82c03d 100644
> --- a/fs/netfs/fscache_io.c
> +++ b/fs/netfs/fscache_io.c
> @@ -9,7 +9,6 @@
> #include <linux/uio.h>
> #include <linux/bvec.h>
> #include <linux/slab.h>
> -#include <linux/uio.h>
> #include "internal.h"
>
> /**
Reviewed-by: Jeff Layton <jlayton@kernel.org>
^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: [RESEND PATCH] fscache: Remove duplicate included header
2024-06-28 8:44 ` Christian Brauner
@ 2024-08-29 12:29 ` Thorsten Blum
2024-08-30 13:17 ` Christian Brauner
0 siblings, 1 reply; 8+ messages in thread
From: Thorsten Blum @ 2024-08-29 12:29 UTC (permalink / raw)
To: Christian Brauner
Cc: netfs, linux-fsdevel, linux-kernel, Simon Horman, dhowells,
jlayton
On 28. Jun 2024, at 10:44, Christian Brauner <brauner@kernel.org> wrote:
> On Fri, 28 Jun 2024 08:23:30 +0200, Thorsten Blum wrote:
>> Remove duplicate included header file linux/uio.h
>>
>>
>
> Applied to the vfs.netfs branch of the vfs/vfs.git tree.
> Patches in the vfs.netfs branch should appear in linux-next soon.
>
> Please report any outstanding bugs that were missed during review in a
> new review to the original patch series allowing us to drop it.
>
> It's encouraged to provide Acked-bys and Reviewed-bys even though the
> patch has now been applied. If possible patch trailers will be updated.
>
> Note that commit hashes shown below are subject to change due to rebase,
> trailer updates or similar. If in doubt, please check the listed branch.
>
> tree: https://git.kernel.org/pub/scm/linux/kernel/git/vfs/vfs.git
> branch: vfs.netfs
>
> [1/1] fscache: Remove duplicate included header
> https://git.kernel.org/vfs/vfs/c/5094b901bedc
Hi Christian,
I just noticed that this patch never made it into linux-next and I
can't find it in the vfs.netfs branch either. Any ideas?
Thanks,
Thorsten
^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: [RESEND PATCH] fscache: Remove duplicate included header
2024-06-28 6:23 [RESEND PATCH] fscache: Remove duplicate included header Thorsten Blum
2024-06-28 8:44 ` Christian Brauner
2024-06-28 10:04 ` Jeff Layton
@ 2024-08-30 13:16 ` Christian Brauner
2024-11-20 8:27 ` Christian Brauner
3 siblings, 0 replies; 8+ messages in thread
From: Christian Brauner @ 2024-08-30 13:16 UTC (permalink / raw)
To: dhowells, jlayton, Thorsten Blum
Cc: Christian Brauner, netfs, linux-fsdevel, linux-kernel,
Simon Horman
On Fri, 28 Jun 2024 08:23:30 +0200, Thorsten Blum wrote:
> Remove duplicate included header file linux/uio.h
>
>
Applied to the vfs.fixes branch of the vfs/vfs.git tree.
Patches in the vfs.fixes branch should appear in linux-next soon.
Please report any outstanding bugs that were missed during review in a
new review to the original patch series allowing us to drop it.
It's encouraged to provide Acked-bys and Reviewed-bys even though the
patch has now been applied. If possible patch trailers will be updated.
Note that commit hashes shown below are subject to change due to rebase,
trailer updates or similar. If in doubt, please check the listed branch.
tree: https://git.kernel.org/pub/scm/linux/kernel/git/vfs/vfs.git
branch: vfs.fixes
[1/1] fscache: Remove duplicate included header
https://git.kernel.org/vfs/vfs/c/007d218b7ee7
^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: [RESEND PATCH] fscache: Remove duplicate included header
2024-08-29 12:29 ` Thorsten Blum
@ 2024-08-30 13:17 ` Christian Brauner
2024-11-17 21:42 ` Thorsten Blum
0 siblings, 1 reply; 8+ messages in thread
From: Christian Brauner @ 2024-08-30 13:17 UTC (permalink / raw)
To: Thorsten Blum
Cc: netfs, linux-fsdevel, linux-kernel, Simon Horman, dhowells,
jlayton
On Thu, Aug 29, 2024 at 02:29:34PM GMT, Thorsten Blum wrote:
> On 28. Jun 2024, at 10:44, Christian Brauner <brauner@kernel.org> wrote:
> > On Fri, 28 Jun 2024 08:23:30 +0200, Thorsten Blum wrote:
> >> Remove duplicate included header file linux/uio.h
> >>
> >>
> >
> > Applied to the vfs.netfs branch of the vfs/vfs.git tree.
> > Patches in the vfs.netfs branch should appear in linux-next soon.
> >
> > Please report any outstanding bugs that were missed during review in a
> > new review to the original patch series allowing us to drop it.
> >
> > It's encouraged to provide Acked-bys and Reviewed-bys even though the
> > patch has now been applied. If possible patch trailers will be updated.
> >
> > Note that commit hashes shown below are subject to change due to rebase,
> > trailer updates or similar. If in doubt, please check the listed branch.
> >
> > tree: https://git.kernel.org/pub/scm/linux/kernel/git/vfs/vfs.git
> > branch: vfs.netfs
> >
> > [1/1] fscache: Remove duplicate included header
> > https://git.kernel.org/vfs/vfs/c/5094b901bedc
>
> Hi Christian,
>
> I just noticed that this patch never made it into linux-next and I
> can't find it in the vfs.netfs branch either. Any ideas?
Picked into vfs.fixes.
^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: [RESEND PATCH] fscache: Remove duplicate included header
2024-08-30 13:17 ` Christian Brauner
@ 2024-11-17 21:42 ` Thorsten Blum
0 siblings, 0 replies; 8+ messages in thread
From: Thorsten Blum @ 2024-11-17 21:42 UTC (permalink / raw)
To: Christian Brauner
Cc: netfs, linux-fsdevel, linux-kernel, Simon Horman, dhowells,
jlayton
On 30. Aug 2024, at 15:17, Christian Brauner wrote:
> On Thu, Aug 29, 2024 at 02:29:34PM GMT, Thorsten Blum wrote:
>> On 28. Jun 2024, at 10:44, Christian Brauner wrote:
>>> On Fri, 28 Jun 2024 08:23:30 +0200, Thorsten Blum wrote:
>>>> Remove duplicate included header file linux/uio.h
>>>>
>>>>
>>>
>>> Applied to the vfs.netfs branch of the vfs/vfs.git tree.
>>> Patches in the vfs.netfs branch should appear in linux-next soon.
>>>
>>> Please report any outstanding bugs that were missed during review in a
>>> new review to the original patch series allowing us to drop it.
>>>
>>> It's encouraged to provide Acked-bys and Reviewed-bys even though the
>>> patch has now been applied. If possible patch trailers will be updated.
>>>
>>> Note that commit hashes shown below are subject to change due to rebase,
>>> trailer updates or similar. If in doubt, please check the listed branch.
>>>
>>> tree: https://git.kernel.org/pub/scm/linux/kernel/git/vfs/vfs.git
>>> branch: vfs.netfs
>>>
>>> [1/1] fscache: Remove duplicate included header
>>> https://git.kernel.org/vfs/vfs/c/5094b901bedc
>>
>> Hi Christian,
>>
>> I just noticed that this patch never made it into linux-next and I
>> can't find it in the vfs.netfs branch either. Any ideas?
>
> Picked into vfs.fixes.
Hi Christian,
I just noticed that this patch (again) didn't make it into linux-next.
Any ideas why not? The link just says:
Notice: this object is not reachable from any branch.
Obviously, this patch isn't very important, but maybe this happens with
other, more important patches too?
Thanks,
Thorsten
^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: [RESEND PATCH] fscache: Remove duplicate included header
2024-06-28 6:23 [RESEND PATCH] fscache: Remove duplicate included header Thorsten Blum
` (2 preceding siblings ...)
2024-08-30 13:16 ` Christian Brauner
@ 2024-11-20 8:27 ` Christian Brauner
3 siblings, 0 replies; 8+ messages in thread
From: Christian Brauner @ 2024-11-20 8:27 UTC (permalink / raw)
To: Thorsten Blum
Cc: Christian Brauner, netfs, linux-fsdevel, linux-kernel,
Simon Horman, dhowells, jlayton
On Fri, 28 Jun 2024 08:23:30 +0200, Thorsten Blum wrote:
> Remove duplicate included header file linux/uio.h
>
>
Applied to the vfs.fixes branch of the vfs/vfs.git tree.
Patches in the vfs.fixes branch should appear in linux-next soon.
Please report any outstanding bugs that were missed during review in a
new review to the original patch series allowing us to drop it.
It's encouraged to provide Acked-bys and Reviewed-bys even though the
patch has now been applied. If possible patch trailers will be updated.
Note that commit hashes shown below are subject to change due to rebase,
trailer updates or similar. If in doubt, please check the listed branch.
tree: https://git.kernel.org/pub/scm/linux/kernel/git/vfs/vfs.git
branch: vfs.fixes
[1/1] fscache: Remove duplicate included header
https://git.kernel.org/vfs/vfs/c/b8a962275765
^ permalink raw reply [flat|nested] 8+ messages in thread
end of thread, other threads:[~2024-11-20 8:27 UTC | newest]
Thread overview: 8+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-06-28 6:23 [RESEND PATCH] fscache: Remove duplicate included header Thorsten Blum
2024-06-28 8:44 ` Christian Brauner
2024-08-29 12:29 ` Thorsten Blum
2024-08-30 13:17 ` Christian Brauner
2024-11-17 21:42 ` Thorsten Blum
2024-06-28 10:04 ` Jeff Layton
2024-08-30 13:16 ` Christian Brauner
2024-11-20 8:27 ` Christian Brauner
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).