gfs2.lists.linux.dev archive mirror
 help / color / mirror / Atom feed
From: Andreas Gruenbacher <agruenba@redhat.com>
To: gfs2@lists.linux.dev
Cc: Andreas Gruenbacher <agruenba@redhat.com>
Subject: [PATCH 00/25] gfs2 patches on for-next
Date: Wed,  1 Nov 2023 17:45:50 +0100	[thread overview]
Message-ID: <20231101164615.1138692-1-agruenba@redhat.com> (raw)

Hello,

this is the set of patches I've queued up for the current merge window.
It's the usual mix of fixes, small improvements, and cleanups.  Please
let me know about any concerns or ideas you have about those patches.

I'm glad about the various contributors we've had this time.  Thank you
very much!

Andreas

Al Viro (1):
  gfs2: fix an oops in gfs2_permission

Amir Goldstein (1):
  gfs2: fs: derive f_fsid from s_uuid

Andreas Gruenbacher (21):
  gfs2: Simplify function gfs2_upgrade_iopen_glock
  gfs2: Remove freeze_go_demote_ok
  gfs2: Remove unused gfs2_extent_length argument
  gfs2: Get rid of the gfs2_glock_is_held_* helpers
  gfs2: Don't update inode timestamps for direct writes
  gfs2: setattr_chown: Add missing initialization
  gfs2: Stop using GFS2_BASIC_BLOCK and GFS2_BASIC_BLOCK_SHIFT
  gfs2: Two quota=account mode fixes
  gfs2: Clean up gfs2_alloc_parms initializers
  gfs2: Clean up quota.c:print_message
  gfs2: Add metapath_dibh helper
  gfs2: Initialize metapaths outside of __gfs2_iomap_get
  gfs2: Get rid of repeated call to __gfs2_iomap_get
  gfs2: Remove unnecessary gfs2_iomap_begin_write parameters
  gfs2: Get rid of gfs2_alloc_blocks generation parameter
  gfs2: Minor gfs2_write_jdata_batch PAGE_SIZE cleanup
  gfs2: Convert stuffed_readpage to folios
  gfs2: Convert gfs2_internal_read to folios
  gfs2: Rename gfs2_lookup_{ simple => meta }
  gfs2: No longer use 'extern' in function declarations
  gfs2: Silence "suspicious RCU usage in gfs2_permission" warning

Bob Peterson (1):
  gfs2: ignore negated quota changes

Juntong Deng (1):
  fs/gfs2: Fix slab-use-after-free in gfs2_qd_dealloc

 fs/gfs2/acl.h        |   8 +--
 fs/gfs2/aops.c       |  72 ++++++++++++-------------
 fs/gfs2/aops.h       |   6 +--
 fs/gfs2/bmap.c       | 125 ++++++++++++++++++++++++++-----------------
 fs/gfs2/bmap.h       |  38 ++++++-------
 fs/gfs2/dir.c        |   2 +-
 fs/gfs2/dir.h        |  38 ++++++-------
 fs/gfs2/file.c       |  18 ++++---
 fs/gfs2/glock.h      | 113 +++++++++++++++++---------------------
 fs/gfs2/glops.c      |  13 -----
 fs/gfs2/glops.h      |   4 +-
 fs/gfs2/incore.h     |   2 +-
 fs/gfs2/inode.c      |  33 +++++++-----
 fs/gfs2/inode.h      |  60 ++++++++++-----------
 fs/gfs2/log.h        |  46 ++++++++--------
 fs/gfs2/lops.h       |  22 ++++----
 fs/gfs2/meta_io.h    |  20 +++----
 fs/gfs2/ops_fstype.c |  24 ++++-----
 fs/gfs2/quota.c      |  31 +++++++----
 fs/gfs2/quota.h      |  35 ++++++------
 fs/gfs2/recovery.h   |  18 +++----
 fs/gfs2/rgrp.c       |  12 +++--
 fs/gfs2/rgrp.h       |  85 ++++++++++++++---------------
 fs/gfs2/super.c      |  29 ++++------
 fs/gfs2/super.h      |  50 ++++++++---------
 fs/gfs2/trans.h      |  24 ++++-----
 fs/gfs2/util.h       |   8 +--
 fs/gfs2/xattr.c      |   6 +--
 fs/gfs2/xattr.h      |  12 ++---
 29 files changed, 485 insertions(+), 469 deletions(-)

-- 
2.41.0


             reply	other threads:[~2023-11-01 16:46 UTC|newest]

Thread overview: 33+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2023-11-01 16:45 Andreas Gruenbacher [this message]
2023-11-01 16:45 ` [PATCH 01/25] gfs2: Simplify function gfs2_upgrade_iopen_glock Andreas Gruenbacher
2023-11-01 16:45 ` [PATCH 02/25] gfs2: Remove freeze_go_demote_ok Andreas Gruenbacher
2023-11-01 16:45 ` [PATCH 03/25] gfs2: Remove unused gfs2_extent_length argument Andreas Gruenbacher
2023-11-01 16:45 ` [PATCH 04/25] gfs2: Get rid of the gfs2_glock_is_held_* helpers Andreas Gruenbacher
2023-11-01 16:45 ` [PATCH 05/25] gfs2: Don't update inode timestamps for direct writes Andreas Gruenbacher
2023-11-01 16:45 ` [PATCH 06/25] gfs2: ignore negated quota changes Andreas Gruenbacher
2023-11-01 16:45 ` [PATCH 07/25] gfs2: fix an oops in gfs2_permission Andreas Gruenbacher
2023-11-01 16:45 ` [PATCH 08/25] gfs2: setattr_chown: Add missing initialization Andreas Gruenbacher
2023-11-01 16:45 ` [PATCH 09/25] gfs2: Stop using GFS2_BASIC_BLOCK and GFS2_BASIC_BLOCK_SHIFT Andreas Gruenbacher
2023-11-01 17:32   ` Andrew Price
2023-11-01 16:46 ` [PATCH 10/25] gfs2: Two quota=account mode fixes Andreas Gruenbacher
2023-11-01 18:19   ` Bob Peterson
2023-11-01 22:06     ` Andreas Gruenbacher
2023-11-02 13:14       ` Bob Peterson
2023-11-02 13:31         ` Steven Whitehouse
2023-11-02 18:08         ` Andreas Gruenbacher
2023-11-02 19:05           ` Bob Peterson
2023-11-01 16:46 ` [PATCH 11/25] gfs2: Clean up gfs2_alloc_parms initializers Andreas Gruenbacher
2023-11-01 16:46 ` [PATCH 12/25] gfs2: Clean up quota.c:print_message Andreas Gruenbacher
2023-11-01 16:46 ` [PATCH 13/25] gfs2: Add metapath_dibh helper Andreas Gruenbacher
2023-11-01 16:46 ` [PATCH 14/25] gfs2: Initialize metapaths outside of __gfs2_iomap_get Andreas Gruenbacher
2023-11-01 16:46 ` [PATCH 15/25] gfs2: Get rid of repeated call to __gfs2_iomap_get Andreas Gruenbacher
2023-11-01 16:46 ` [PATCH 16/25] gfs2: Remove unnecessary gfs2_iomap_begin_write parameters Andreas Gruenbacher
2023-11-01 16:46 ` [PATCH 17/25] gfs2: Get rid of gfs2_alloc_blocks generation parameter Andreas Gruenbacher
2023-11-01 16:46 ` [PATCH 18/25] gfs2: Minor gfs2_write_jdata_batch PAGE_SIZE cleanup Andreas Gruenbacher
2023-11-01 16:46 ` [PATCH 19/25] gfs2: Convert stuffed_readpage to folios Andreas Gruenbacher
2023-11-01 16:46 ` [PATCH 20/25] gfs2: Convert gfs2_internal_read " Andreas Gruenbacher
2023-11-01 16:46 ` [PATCH 21/25] gfs2: Rename gfs2_lookup_{ simple => meta } Andreas Gruenbacher
2023-11-01 16:46 ` [PATCH 22/25] gfs2: No longer use 'extern' in function declarations Andreas Gruenbacher
2023-11-01 16:46 ` [PATCH 23/25] gfs2: fs: derive f_fsid from s_uuid Andreas Gruenbacher
2023-11-01 16:46 ` [PATCH 24/25] gfs2: Silence "suspicious RCU usage in gfs2_permission" warning Andreas Gruenbacher
2023-11-01 16:46 ` [PATCH 25/25] fs/gfs2: Fix slab-use-after-free in gfs2_qd_dealloc Andreas Gruenbacher

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20231101164615.1138692-1-agruenba@redhat.com \
    --to=agruenba@redhat.com \
    --cc=gfs2@lists.linux.dev \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
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).