Message ID | 20220827065851.135710-1-ebiggers@kernel.org (mailing list archive) |
---|---|
Headers | show |
Series | make statx() return DIO alignment information | expand |
On Fri, Aug 26, 2022 at 11:58:43PM -0700, Eric Biggers wrote: > This patchset makes the statx() system call return direct I/O (DIO) > alignment information. This allows userspace to easily determine > whether a file supports DIO, and if so with what alignment restrictions. Al, any thoughts on this patchset, and do you plan to apply it for 6.1? Ideally this would go through the VFS tree. If not, I suppose I'll need to have it added to linux-next and send the pull request myself. - Eric
On Tue, Sep 06, 2022 at 03:08:51PM -0700, Eric Biggers wrote: > On Fri, Aug 26, 2022 at 11:58:43PM -0700, Eric Biggers wrote: > > This patchset makes the statx() system call return direct I/O (DIO) > > alignment information. This allows userspace to easily determine > > whether a file supports DIO, and if so with what alignment restrictions. > > Al, any thoughts on this patchset, and do you plan to apply it for 6.1? Ideally > this would go through the VFS tree. If not, I suppose I'll need to have it > added to linux-next and send the pull request myself. > > - Eric Seems that it's up to me, then. Stephen, can you add my git branch for this patchset to linux-next? URL: https://git.kernel.org/pub/scm/linux/kernel/git/ebiggers/linux.git Branch: statx-dioalign This is targeting the 6.1 merge window with a pull request to Linus. Thanks! - Eric
Hi Eric, On Sun, 11 Sep 2022 19:54:12 -0500 Eric Biggers <ebiggers@kernel.org> wrote: > > On Tue, Sep 06, 2022 at 03:08:51PM -0700, Eric Biggers wrote: > > On Fri, Aug 26, 2022 at 11:58:43PM -0700, Eric Biggers wrote: > > > This patchset makes the statx() system call return direct I/O (DIO) > > > alignment information. This allows userspace to easily determine > > > whether a file supports DIO, and if so with what alignment restrictions. > > > > Al, any thoughts on this patchset, and do you plan to apply it for 6.1? Ideally > > this would go through the VFS tree. If not, I suppose I'll need to have it > > added to linux-next and send the pull request myself. > > > > - Eric > > Seems that it's up to me, then. > > Stephen, can you add my git branch for this patchset to linux-next? > > URL: https://git.kernel.org/pub/scm/linux/kernel/git/ebiggers/linux.git > Branch: statx-dioalign > > This is targeting the 6.1 merge window with a pull request to Linus. Added from today. Thanks for adding your subsystem tree as a participant of linux-next. As you may know, this is not a judgement of your code. The purpose of linux-next is for integration testing and to lower the impact of conflicts between subsystems in the next merge window. You will need to ensure that the patches/commits in your tree/series have been: * submitted under GPL v2 (or later) and include the Contributor's Signed-off-by, * posted to the relevant mailing list, * reviewed by you (or another maintainer of your subsystem tree), * successfully unit tested, and * destined for the current or next Linux merge window. Basically, this should be just what you would send to Linus (or ask him to fetch). It is allowed to be rebased if you deem it necessary.
Hi Eric, On Tue, 13 Sep 2022 06:30:25 +1000 Stephen Rothwell <sfr@canb.auug.org.au> wrote: > > On Sun, 11 Sep 2022 19:54:12 -0500 Eric Biggers <ebiggers@kernel.org> wrote: > > > > Stephen, can you add my git branch for this patchset to linux-next? > > > > URL: https://git.kernel.org/pub/scm/linux/kernel/git/ebiggers/linux.git > > Branch: statx-dioalign > > > > This is targeting the 6.1 merge window with a pull request to Linus. > > Added from today. I notice that this branch has been removed. Are you finished with it (i.e. should I remove it from linux-next)?
On Tue, Oct 18, 2022 at 03:55:24PM +1100, Stephen Rothwell wrote: > Hi Eric, > > On Tue, 13 Sep 2022 06:30:25 +1000 Stephen Rothwell <sfr@canb.auug.org.au> wrote: > > > > On Sun, 11 Sep 2022 19:54:12 -0500 Eric Biggers <ebiggers@kernel.org> wrote: > > > > > > Stephen, can you add my git branch for this patchset to linux-next? > > > > > > URL: https://git.kernel.org/pub/scm/linux/kernel/git/ebiggers/linux.git > > > Branch: statx-dioalign > > > > > > This is targeting the 6.1 merge window with a pull request to Linus. > > > > Added from today. > > I notice that this branch has been removed. Are you finished with it > (i.e. should I remove it from linux-next)? > Yes, I think so. This patchset has been merged upstream. Any more patches related to STATX_DIOALIGN should go in through the VFS or filesystem-specific trees. - Eric
Hi Eric, On Tue, 18 Oct 2022 00:07:57 -0700 Eric Biggers <ebiggers@kernel.org> wrote: > > On Tue, Oct 18, 2022 at 03:55:24PM +1100, Stephen Rothwell wrote: > > > > I notice that this branch has been removed. Are you finished with it > > (i.e. should I remove it from linux-next)? > > > > Yes, I think so. This patchset has been merged upstream. Any more patches > related to STATX_DIOALIGN should go in through the VFS or filesystem-specific > trees. OK, I have removed it.