mirror of https://lore.kernel.org/lkml/
 help / color / mirror / Atom feed
From: Chao Yu <chao@kernel.org>
To: Daeho Jeong <daeho43@gmail.com>
Cc: chao@kernel.org, jaegeuk@kernel.org,
	linux-kernel@vger.kernel.org,
	linux-f2fs-devel@lists.sourceforge.net
Subject: Re: [f2fs-dev] [PATCH v3 09/12] f2fs: cache: use compress cache
Date: Fri, 28 Aug 2026 11:32:27 +0800	[thread overview]
Message-ID: <565c31ee-4677-4d16-bcc4-4754aa94d4ee@kernel.org> (raw)
In-Reply-To: <CACOAw_ySh3pW5tg7pa6r7Rr7tuqp9btPWvN-rrWN7mOpKcw3kQ@mail.gmail.com>

On 8/28/26 01:20, Daeho Jeong wrote:
> On Wed, Aug 26, 2026 at 8:24 PM Chao Yu <chao@kernel.org> wrote:
>>
>> On 8/27/26 04:04, Daeho Jeong wrote:
>>>> -static void f2fs_truncate_cache(struct f2fs_cached_block *entry,
>>>> +void f2fs_truncate_cache(struct f2fs_cached_block *entry,
>>>>                                         bool drop_dirty)
>>>
>>> -> __f2fs_truncate_cache() without locking?
>> Or, I guess you mean we need a cleanup here?
>>
>> What about:
>>
>> void f2fs_truncate_cache(struct f2fs_cached_block *entry, bool drop_dirty)
>> {
>>         if (!entry->cache)
>>                 return;
>>         f2fs_do_truncate_cache(entry, drop_dirty);
>> }
>>
>> static void f2fs_truncate_cache_locked(struct f2fs_cached_block *entry, bool drop_dirty)
>> {
>>         f2fs_lock_cache(entry);
>>         f2fs_truncate_cache(entry, drop_dirty);
>>         f2fs_unlock_cache(entry);
>> }
>>
>> f2fs_truncate_cache() was exported for using in other .c file, in the meantime,
>> static f2fs_truncate_cache_locked() can be used inside cache.c.
> 
> Splitting them into two helpers (one with locking, one without) makes
> total sense.
> 
> However, in the Linux kernel convention, having `_locked` or `__`
> usually indicates that the caller is expected to ALREADY hold the lock
> (e.g. `__list_add()`, `__folio_mark_dirty()`).
> 
> If an exported function is named `f2fs_truncate_cache()` without `__`,
> callers would naturally assume it handles locking internally.
> 
> So I'd suggest following the standard kernel pattern:
> 
> /* Caller must hold f2fs_lock_cache(entry) */
> void __f2fs_truncate_cache(struct f2fs_cached_block *entry, bool drop_dirty)
> {
> if (!entry->cache)
> return;
> f2fs_do_truncate_cache(entry, drop_dirty);
> }
> 
> /* Safe wrapper that acquires entry lock internally */
> void f2fs_truncate_cache(struct f2fs_cached_block *entry, bool drop_dirty)
> {
> f2fs_lock_cache(entry);
> __f2fs_truncate_cache(entry, drop_dirty);
> f2fs_unlock_cache(entry);
> }
> 
> Then compress.c (which already holds the lock to check entry->ino) can
> call `__f2fs_truncate_cache()`, while other callers can safely use
> `f2fs_truncate_cache()`.

Okay, I see.

My concern is previously we don't export __f2fs functions in *.h, see f2fs.h,
but since it has "f2fs" keyword in prefix, so it won't pollute global name space,
so I guess it's fine, anyway, let me update.

Thanks,

> 
> What do you think?
> 
> Thanks,
> 
>>
>> Thanks,


  reply	other threads:[~2026-08-28  3:32 UTC|newest]

Thread overview: 42+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2026-08-25 13:01 [PATCH v3 00/12] f2fs: introduce metadata cache Chao Yu
2026-08-25 13:01 ` [PATCH v3 01/12] f2fs: cache: implement " Chao Yu
2026-08-26 19:14   ` [f2fs-dev] " Daeho Jeong
2026-08-27  1:16     ` Chao Yu
2026-08-27 16:56       ` Daeho Jeong
2026-08-28  1:36         ` Chao Yu
2026-08-25 13:01 ` [PATCH v3 02/12] f2fs: cache: initialize meta cache Chao Yu
2026-08-25 13:01 ` [PATCH v3 03/12] f2fs: cache: introduce shrinker Chao Yu
2026-08-26 19:19   ` [f2fs-dev] " Daeho Jeong
2026-08-27  1:19     ` Chao Yu
2026-08-27 17:00       ` Daeho Jeong
2026-08-28  1:59         ` Chao Yu
2026-08-28  2:56         ` Chao Yu
2026-08-28 18:18           ` Daeho Jeong
2026-08-25 13:01 ` [PATCH v3 04/12] f2fs: cache: introduce writeback thread Chao Yu
2026-08-26 19:37   ` [f2fs-dev] " Daeho Jeong
2026-08-27  1:28     ` Chao Yu
2026-08-27 17:03       ` Daeho Jeong
2026-08-25 13:01 ` [PATCH v3 05/12] f2fs: cache: use meta cache Chao Yu
2026-08-26 20:22   ` [f2fs-dev] " Daeho Jeong
2026-08-27  2:26     ` Chao Yu
2026-08-27  6:46       ` Chao Yu
2026-08-25 13:01 ` [PATCH v3 06/12] f2fs: cache: initialize node cache Chao Yu
2026-08-25 13:01 ` [PATCH v3 07/12] f2fs: cache: use " Chao Yu
2026-08-25 13:01 ` [PATCH v3 08/12] f2fs: cache: initialize compress cache Chao Yu
2026-08-25 13:01 ` [PATCH v3 09/12] f2fs: cache: use " Chao Yu
2026-08-26 20:04   ` [f2fs-dev] " Daeho Jeong
2026-08-26 20:23     ` Daeho Jeong
2026-08-27  2:27       ` Chao Yu
2026-08-27  2:22     ` Chao Yu
2026-08-27 17:12       ` Daeho Jeong
2026-08-27  3:08     ` Chao Yu
2026-08-27 17:13       ` Daeho Jeong
2026-08-27  3:24     ` Chao Yu
2026-08-27 17:20       ` Daeho Jeong
2026-08-28  3:32         ` Chao Yu [this message]
2026-08-28 12:00     ` Chao Yu
2026-08-28 12:25       ` Chao Yu
2026-08-28 18:22         ` Daeho Jeong
2026-08-25 13:01 ` [PATCH v3 10/12] f2fs: cache: support fault injection Chao Yu
2026-08-25 13:01 ` [PATCH v3 11/12] f2fs: cache: introduce tracepoints Chao Yu
2026-08-25 13:01 ` [PATCH v3 12/12] f2fs: cache: show per-cache usage in debugfs Chao Yu

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=565c31ee-4677-4d16-bcc4-4754aa94d4ee@kernel.org \
    --to=chao@kernel.org \
    --cc=daeho43@gmail.com \
    --cc=jaegeuk@kernel.org \
    --cc=linux-f2fs-devel@lists.sourceforge.net \
    --cc=linux-kernel@vger.kernel.org \
    /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

all inboxes | Powered by JetHome®