mbox series

[0/7] Convert minixfs directory handling to folios

Message ID 20240710012323.2039519-1-willy@infradead.org (mailing list archive)
Headers show
Series Convert minixfs directory handling to folios | expand

Message

Matthew Wilcox July 10, 2024, 1:23 a.m. UTC
This patch series mirrors the changes to ext2 directory handling.
It's a bit simpler than the UFS one from yesterday as minixfs was already
converted to kmap_local.  Again, compile tested only.  This is against
current linux-next and will need to be tweaked to apply on top of the
hotfix I sent earlier today.

And I'll need to fix up the typo of "minifs" that I just noticed.
So there will be a v2.

Matthew Wilcox (Oracle) (7):
  minixfs: Convert dir_get_page() to dir_get_folio()
  minixfs: Convert minix_find_entry() to take a folio
  minifs: Convert minix_set_link() and minix_dotdot() to take a folio
  minixfs: Convert minix_delete_entry() to work on a folio
  minixfs: Convert minix_make_empty() to use a folio
  minixfs: Convert minix_prepare_chunk() to take a folio
  minixfs: Convert dir_commit_chunk() to take a folio

 fs/minix/dir.c   | 134 +++++++++++++++++++++++------------------------
 fs/minix/inode.c |   4 +-
 fs/minix/minix.h |  40 +++++++-------
 fs/minix/namei.c |  33 ++++++------
 4 files changed, 104 insertions(+), 107 deletions(-)