gfs2.lists.linux.dev archive mirror
 help / color / mirror / Atom feed
* [GIT PULL] gfs2 changes
@ 2024-01-08 12:05 Andreas Gruenbacher
  2024-01-10 20:38 ` pr-tracker-bot
  0 siblings, 1 reply; 4+ messages in thread
From: Andreas Gruenbacher @ 2024-01-08 12:05 UTC (permalink / raw
  To: Linus Torvalds; +Cc: Andreas Gruenbacher, gfs2, linux-kernel

Hello Linus,

please consider pulling the following gfs2 changes.

In addition to the usual fixes and cleanups, this adds gfs2 support for
non-blocking lookups (MAY_NOT_BLOCK / LOOKUP_RCU).  That's a worthwhile
improvement by itself and gets us one step closer to making RESOLVE_CACHED
work (*).

https://lore.kernel.org/linux-fsdevel/20231109190844.2044940-1-agruenba@redhat.com/

Thanks,
Andreas

The following changes since commit b85ea95d086471afb4ad062012a4d73cd328fa86:

  Linux 6.7-rc1 (2023-11-12 16:19:07 -0800)

are available in the Git repository at:

  git://git.kernel.org/pub/scm/linux/kernel/git/gfs2/linux-gfs2.git tags/gfs2-v6.7-rc1-fixes

for you to fetch changes up to e345b87b0b0444d1c644b0ea15cfb50e88f10b55:

  gfs2: Fix freeze consistency check in log_write_header (2023-12-27 13:16:48 +0100)

----------------------------------------------------------------
gfs2 updates

- Add support for non-blocking lookup (MAY_NOT_BLOCK / LOOKUP_RCU)

- Various minor fixes and cleanups

----------------------------------------------------------------
Abhi Das (1):
      gfs2: Use GL_NOBLOCK flag for non-blocking lookups

Al Viro (2):
      gfs2: d_obtain_alias(ERR_PTR(...)) will do the right thing
      gfs2: use is_subdir()

Andreas Gruenbacher (9):
      gfs2: Fix inode_go_instantiate description
      gfs2: Add GL_NOBLOCK flag
      gfs2: Minor gfs2_ail1_empty cleanup
      gfs2: Mark withdraws as unlikely
      gfs2: Rename gfs2_withdrawn to gfs2_withdrawing_or_withdrawn
      gfs2: Lift withdraw check out of gfs2_ail1_empty
      gfs2: Minor gfs2_{freeze,thaw}_super cleanup
      gfs2: Refcounting fix in gfs2_thaw_super
      gfs2: Fix freeze consistency check in log_write_header

Edward Adam Davis (1):
      gfs2: fix kernel BUG in gfs2_quota_cleanup

Kevin Hao (2):
      gfs2: Add missing set_freezable() for freezable kthread
      gfs2: Use wait_event_freezable_timeout() for freezable kthread

Matthew Wilcox (Oracle) (1):
      gfs2: Remove use of error flag in journal reads

Osama Muhammad (1):
      gfs2: Fix kernel NULL pointer dereference in gfs2_rgrp_dump

Randy Dunlap (1):
      gfs2: rgrp: fix kernel-doc warnings

 fs/gfs2/aops.c       |  2 +-
 fs/gfs2/dentry.c     | 23 ++++++++------
 fs/gfs2/export.c     |  2 --
 fs/gfs2/file.c       |  2 +-
 fs/gfs2/glock.c      | 47 +++++++++++++++++++++++++---
 fs/gfs2/glock.h      |  1 +
 fs/gfs2/glops.c      |  4 +--
 fs/gfs2/inode.c      |  8 ++---
 fs/gfs2/lock_dlm.c   |  8 ++---
 fs/gfs2/log.c        | 63 +++++++++++++++++++++----------------
 fs/gfs2/lops.c       | 21 +++++--------
 fs/gfs2/meta_io.c    |  9 ++++--
 fs/gfs2/ops_fstype.c |  2 +-
 fs/gfs2/quota.c      | 16 +++++-----
 fs/gfs2/recovery.c   |  2 +-
 fs/gfs2/rgrp.c       | 12 +++----
 fs/gfs2/super.c      | 88 +++++++++++++++++++++-------------------------------
 fs/gfs2/sys.c        |  2 +-
 fs/gfs2/trans.c      |  2 +-
 fs/gfs2/util.c       |  4 +--
 fs/gfs2/util.h       | 15 ++++-----
 21 files changed, 182 insertions(+), 151 deletions(-)


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

* Re: [GIT PULL] gfs2 changes
  2024-01-08 12:05 Andreas Gruenbacher
@ 2024-01-10 20:38 ` pr-tracker-bot
  0 siblings, 0 replies; 4+ messages in thread
From: pr-tracker-bot @ 2024-01-10 20:38 UTC (permalink / raw
  To: Andreas Gruenbacher
  Cc: Linus Torvalds, Andreas Gruenbacher, gfs2, linux-kernel

The pull request you sent on Mon,  8 Jan 2024 13:05:53 +0100:

> git://git.kernel.org/pub/scm/linux/kernel/git/gfs2/linux-gfs2.git tags/gfs2-v6.7-rc1-fixes

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

Thank you!

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

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

* [GIT PULL] gfs2 changes
@ 2024-05-13 21:03 Andreas Gruenbacher
  2024-05-15  0:53 ` pr-tracker-bot
  0 siblings, 1 reply; 4+ messages in thread
From: Andreas Gruenbacher @ 2024-05-13 21:03 UTC (permalink / raw
  To: Linus Torvalds; +Cc: Andreas Gruenbacher, gfs2, linux-kernel

Hello Linus,

please consider pulling the following gfs2 changes.

Thank you very much,
Andreas

The following changes since commit c95346ac918c5badf51b9a7ac58a26d3bd5bb224:

  gfs2: Fix invalid metadata access in punch_hole (2024-03-11 17:11:18 +0100)

are available in the Git repository at:

  git://git.kernel.org/pub/scm/linux/kernel/git/gfs2/linux-gfs2.git tags/gfs2-for-v6.10

for you to fetch changes up to c1c53c26e3380a79b65e6b53dac6c3c797a7e8f1:

  gfs2: make timeout values more explicit (2024-05-07 12:42:48 +0200)

----------------------------------------------------------------
gfs2 updates

- Properly fix the glock shrinker this time: it broke in commit "gfs2:
  Make glock lru list scanning safer" and commit "gfs2: fix glock
  shrinker ref issues" wasn't actually enough to fix it.

- On unmount, keep glocks around long enough that no more dlm callbacks
  can occur on them.

- Some more folio conversion patches from Matthew Wilcox.

- Lots of other smaller fixes and cleanups.

----------------------------------------------------------------
Andreas Gruenbacher (21):
      gfs2: Get rid of newlines in log messages
      gfs2: Remove unnecessary gfs2_meta_check_ii argument
      gfs2: Follow-up to flag rename in sysfs status file
      gfs2: Use [NO_]CREATE consistently for gfs2_glock_get
      gfs2: Don't forget to complete delayed withdraw
      gfs2: Fix NULL pointer dereference in gfs2_log_flush
      gfs2: Get rid of gfs2_glock_queue_put in signal_our_withdraw
      gfs2: Replace gfs2_glock_queue_put with gfs2_glock_put_async
      gfs2: Don't set GLF_LOCK in gfs2_dispose_glock_lru
      gfs2: Get rid of unnecessary test_and_set_bit
      gfs2: Fix "ignore unlock failures after withdraw"
      Revert "gfs2: fix glock shrinker ref issues"
      gfs2: Fix "Make glock lru list scanning safer"
      gfs2: Fix lru_count accounting
      gfs2: Remove ill-placed consistency check
      gfs2: Fix potential glock use-after-free on unmount
      gfs2: Unlock fewer glocks on unmount
      gfs2: finish_xmote cleanup
      gfs2: do_xmote fixes
      gfs2: Remove and replace gfs2_glock_queue_work
      gfs2: gfs2_freeze_unlock cleanup

Andrew Price (1):
      gfs2: Improve gfs2_consist_inode() usage

Matthew Wilcox (Oracle) (4):
      gfs2: Convert gfs2_page_mkwrite() to use a folio
      gfs2: Simplify gfs2_read_super
      gfs2: Add a migrate_folio operation for journalled files
      gfs2: Convert gfs2_aspace_writepage() to use a folio

Wolfram Sang (1):
      gfs2: make timeout values more explicit

 fs/gfs2/aops.c       |   4 +-
 fs/gfs2/bmap.c       |   2 +-
 fs/gfs2/dir.c        |  31 +++++----
 fs/gfs2/file.c       |  59 ++++++++--------
 fs/gfs2/glock.c      | 192 +++++++++++++++++++++++++++++++--------------------
 fs/gfs2/glock.h      |   3 +-
 fs/gfs2/glops.c      |  37 ++++++----
 fs/gfs2/incore.h     |   1 +
 fs/gfs2/lock_dlm.c   |  40 ++++++++---
 fs/gfs2/log.c        |   5 +-
 fs/gfs2/meta_io.c    |  16 ++---
 fs/gfs2/ops_fstype.c |  49 ++++---------
 fs/gfs2/rgrp.c       |  10 +--
 fs/gfs2/super.c      |  28 ++++----
 fs/gfs2/sys.c        |   4 +-
 fs/gfs2/util.c       |  63 ++++++++---------
 fs/gfs2/util.h       |   6 +-
 fs/gfs2/xattr.c      |  28 ++++----
 18 files changed, 320 insertions(+), 258 deletions(-)


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

* Re: [GIT PULL] gfs2 changes
  2024-05-13 21:03 [GIT PULL] gfs2 changes Andreas Gruenbacher
@ 2024-05-15  0:53 ` pr-tracker-bot
  0 siblings, 0 replies; 4+ messages in thread
From: pr-tracker-bot @ 2024-05-15  0:53 UTC (permalink / raw
  To: Andreas Gruenbacher
  Cc: Linus Torvalds, Andreas Gruenbacher, gfs2, linux-kernel

The pull request you sent on Mon, 13 May 2024 23:03:36 +0200:

> git://git.kernel.org/pub/scm/linux/kernel/git/gfs2/linux-gfs2.git tags/gfs2-for-v6.10

has been merged into torvalds/linux.git:
https://git.kernel.org/torvalds/c/9518ae6ec57ada7d6c373588036163bf7aaf1c50

Thank you!

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

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

end of thread, other threads:[~2024-05-15  0:53 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-05-13 21:03 [GIT PULL] gfs2 changes Andreas Gruenbacher
2024-05-15  0:53 ` pr-tracker-bot
  -- strict thread matches above, loose matches on Subject: below --
2024-01-08 12:05 Andreas Gruenbacher
2024-01-10 20:38 ` 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 read-only IMAP folder(s) and NNTP newsgroup(s).