linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [GIT PULL] Btrfs fixes for 5.18-rc3
@ 2022-04-11 21:31 David Sterba
  2022-04-13 11:52 ` David Sterba
                   ` (2 more replies)
  0 siblings, 3 replies; 5+ messages in thread
From: David Sterba @ 2022-04-11 21:31 UTC (permalink / raw)
  To: torvalds; +Cc: linux-btrfs, linux-kernel

Hi,

a few more code fixes and a warning fixes. There's one feature ioctl
removal patch slated for 5.18 that did not make it to the main pull
request.  It's just a one-liner and the ioctl has a v2 that's in use for
a long time, no point to postpone it to 5.19.

Please pull, thanks.

- fixes:
  - add back cgroup attribution for compressed writes
  - add super block write start/end annotations to asynchronous balance
  - fix root reference count on an error handling path
  - in zoned mode, activate zone at the chunk allocation time to avoid
    ENOSPC due to timing issues
  - fix delayed allocation accounting for direct IO

- remove balance v1 ioctl, superseded by v2 in 2012

- warning fixes:
  - simplify assertion condition in zoned check
  - remove an unused variable

----------------------------------------------------------------
The following changes since commit 60021bd754c6ca0addc6817994f20290a321d8d6:

  btrfs: prevent subvol with swapfile from being deleted (2022-03-24 17:50:57 +0100)

are available in the Git repository at:

  git://git.kernel.org/pub/scm/linux/kernel/git/kdave/linux.git for-5.18-rc2-tag

for you to fetch changes up to acee08aaf6d158d03668dc82b0a0eef41100531b:

  btrfs: fix btrfs_submit_compressed_write cgroup attribution (2022-04-06 00:50:51 +0200)

----------------------------------------------------------------
Dennis Zhou (1):
      btrfs: fix btrfs_submit_compressed_write cgroup attribution

Haowen Bai (1):
      btrfs: zoned: remove redundant condition in btrfs_run_delalloc_range

Jia-Ju Bai (1):
      btrfs: fix root ref counts in error handling in btrfs_get_root_ref

Naohiro Aota (4):
      btrfs: release correct delalloc amount in direct IO write path
      btrfs: mark resumed async balance as writing
      btrfs: return allocated block group from do_chunk_alloc()
      btrfs: zoned: activate block group only for extent allocation

Nathan Chancellor (1):
      btrfs: remove unused variable in btrfs_{start,write}_dirty_block_groups()

Nikolay Borisov (1):
      btrfs: remove support of balance v1 ioctl

 fs/btrfs/block-group.c | 40 +++++++++++++++++++++++++++-------------
 fs/btrfs/block-group.h |  4 ++++
 fs/btrfs/compression.c |  8 ++++++++
 fs/btrfs/disk-io.c     |  5 +++--
 fs/btrfs/extent-tree.c |  2 +-
 fs/btrfs/inode.c       |  9 ++++-----
 fs/btrfs/ioctl.c       |  2 --
 fs/btrfs/volumes.c     |  2 ++
 8 files changed, 49 insertions(+), 23 deletions(-)


^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: [GIT PULL] Btrfs fixes for 5.18-rc3
  2022-04-11 21:31 [GIT PULL] Btrfs fixes for 5.18-rc3 David Sterba
@ 2022-04-13 11:52 ` David Sterba
  2022-04-14 14:37 ` David Sterba
  2022-04-14 18:59 ` pr-tracker-bot
  2 siblings, 0 replies; 5+ messages in thread
From: David Sterba @ 2022-04-13 11:52 UTC (permalink / raw)
  To: torvalds, linux-btrfs, linux-kernel

On Mon, Apr 11, 2022 at 11:31:43PM +0200, David Sterba wrote:
> Hi,
> 
> a few more code fixes and a warning fixes. There's one feature ioctl
> removal patch slated for 5.18 that did not make it to the main pull
> request.  It's just a one-liner and the ioctl has a v2 that's in use for
> a long time, no point to postpone it to 5.19.
> 
> Please pull, thanks.
> 
> - fixes:
>   - add back cgroup attribution for compressed writes
>   - add super block write start/end annotations to asynchronous balance
>   - fix root reference count on an error handling path
>   - in zoned mode, activate zone at the chunk allocation time to avoid
>     ENOSPC due to timing issues
>   - fix delayed allocation accounting for direct IO
> 
> - remove balance v1 ioctl, superseded by v2 in 2012
> 
> - warning fixes:
>   - simplify assertion condition in zoned check
>   - remove an unused variable

Has this ended up in your spam box again? The mail is in lore archives
as https://lore.kernel.org/all/cover.1649705056.git.dsterba@suse.com/ .

> ----------------------------------------------------------------
> The following changes since commit 60021bd754c6ca0addc6817994f20290a321d8d6:
> 
>   btrfs: prevent subvol with swapfile from being deleted (2022-03-24 17:50:57 +0100)
> 
> are available in the Git repository at:
> 
>   git://git.kernel.org/pub/scm/linux/kernel/git/kdave/linux.git for-5.18-rc2-tag
> 
> for you to fetch changes up to acee08aaf6d158d03668dc82b0a0eef41100531b:
> 
>   btrfs: fix btrfs_submit_compressed_write cgroup attribution (2022-04-06 00:50:51 +0200)
> 
> ----------------------------------------------------------------
> Dennis Zhou (1):
>       btrfs: fix btrfs_submit_compressed_write cgroup attribution
> 
> Haowen Bai (1):
>       btrfs: zoned: remove redundant condition in btrfs_run_delalloc_range
> 
> Jia-Ju Bai (1):
>       btrfs: fix root ref counts in error handling in btrfs_get_root_ref
> 
> Naohiro Aota (4):
>       btrfs: release correct delalloc amount in direct IO write path
>       btrfs: mark resumed async balance as writing
>       btrfs: return allocated block group from do_chunk_alloc()
>       btrfs: zoned: activate block group only for extent allocation
> 
> Nathan Chancellor (1):
>       btrfs: remove unused variable in btrfs_{start,write}_dirty_block_groups()
> 
> Nikolay Borisov (1):
>       btrfs: remove support of balance v1 ioctl
> 
>  fs/btrfs/block-group.c | 40 +++++++++++++++++++++++++++-------------
>  fs/btrfs/block-group.h |  4 ++++
>  fs/btrfs/compression.c |  8 ++++++++
>  fs/btrfs/disk-io.c     |  5 +++--
>  fs/btrfs/extent-tree.c |  2 +-
>  fs/btrfs/inode.c       |  9 ++++-----
>  fs/btrfs/ioctl.c       |  2 --
>  fs/btrfs/volumes.c     |  2 ++
>  8 files changed, 49 insertions(+), 23 deletions(-)
> 

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: [GIT PULL] Btrfs fixes for 5.18-rc3
  2022-04-11 21:31 [GIT PULL] Btrfs fixes for 5.18-rc3 David Sterba
  2022-04-13 11:52 ` David Sterba
@ 2022-04-14 14:37 ` David Sterba
  2022-04-14 17:50   ` Linus Torvalds
  2022-04-14 18:59 ` pr-tracker-bot
  2 siblings, 1 reply; 5+ messages in thread
From: David Sterba @ 2022-04-14 14:37 UTC (permalink / raw)
  To: dsterba, torvalds, linux-btrfs, linux-kernel

Hi,

I'm sending this from a different mail address after 2 days of no reply
and no merge of the btrfs updates (message body deleted in case it
triggers the spam filter). The mail is in lore archives at
https://lore.kernel.org/all/cover.1649705056.git.dsterba@suse.com/

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: [GIT PULL] Btrfs fixes for 5.18-rc3
  2022-04-14 14:37 ` David Sterba
@ 2022-04-14 17:50   ` Linus Torvalds
  0 siblings, 0 replies; 5+ messages in thread
From: Linus Torvalds @ 2022-04-14 17:50 UTC (permalink / raw)
  To: dave, David Sterba, Linus Torvalds, linux-btrfs,
	Linux Kernel Mailing List

On Thu, Apr 14, 2022 at 7:37 AM David Sterba <dave@jikos.cz> wrote:
>
> I'm sending this from a different mail address after 2 days of no reply
> and no merge of the btrfs updates (message body deleted in case it
> triggers the spam filter). The mail is in lore archives at
> https://lore.kernel.org/all/cover.1649705056.git.dsterba@suse.com/

Indeed, I don't see that email in my inbox, and I must have apparently
missed it and deleted it from spam too.

gmail *really* hates email from suse.cz these days, I had multiple
emails from Vlastimil about the page pinning series go into the spam
folder too.

I've explicitly added you as a contact in the hopes that it will help.

Thanks for re-sending,

             Linus

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: [GIT PULL] Btrfs fixes for 5.18-rc3
  2022-04-11 21:31 [GIT PULL] Btrfs fixes for 5.18-rc3 David Sterba
  2022-04-13 11:52 ` David Sterba
  2022-04-14 14:37 ` David Sterba
@ 2022-04-14 18:59 ` pr-tracker-bot
  2 siblings, 0 replies; 5+ messages in thread
From: pr-tracker-bot @ 2022-04-14 18:59 UTC (permalink / raw)
  To: David Sterba; +Cc: torvalds, linux-btrfs, linux-kernel

The pull request you sent on Mon, 11 Apr 2022 23:31:43 +0200:

> git://git.kernel.org/pub/scm/linux/kernel/git/kdave/linux.git for-5.18-rc2-tag

has been merged into torvalds/linux.git:
https://git.kernel.org/torvalds/c/722985e2f6ec9127064771ba526578ea8275834d

Thank you!

-- 
Deet-doot-dot, I am a bot.
https://korg.docs.kernel.org/prtracker.html

^ permalink raw reply	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2022-04-14 18:59 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-04-11 21:31 [GIT PULL] Btrfs fixes for 5.18-rc3 David Sterba
2022-04-13 11:52 ` David Sterba
2022-04-14 14:37 ` David Sterba
2022-04-14 17:50   ` Linus Torvalds
2022-04-14 18:59 ` pr-tracker-bot

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).