From: Kairui Song <ryncsn@gmail.com>
To: Kemeng Shi <shikemeng@huaweicloud.com>
Cc: akpm@linux-foundation.org, linux-mm@kvack.org,
linux-kernel@vger.kernel.org
Subject: Re: [PATCH 2/9] mm: swap: factor out the actual swap entry freeing logic to new helper
Date: Fri, 14 Mar 2025 15:47:45 +0800 [thread overview]
Message-ID: <CAMgjq7Cq30Kb-Wysq+GkV4ZAj-PKQQaEg_YQzwJ=6COtS6k_Yw@mail.gmail.com> (raw)
In-Reply-To: <a04c8908-a12a-dab8-f4e4-61f7b85443bf@huaweicloud.com>
On Fri, Mar 14, 2025 at 3:32 PM Kemeng Shi <shikemeng@huaweicloud.com> wrote:
>
> on 3/14/2025 1:42 AM, Kairui Song wrote:
> > On Thu, Mar 13, 2025 at 8:09 PM Kemeng Shi <shikemeng@huaweicloud.com> wrote:
> >>
> >> Factor out the actual swap entry freeing logic to new helper
> >> __swap_entries_free().
> >> This allow us to futher simplify other swap entry freeing code by
> >> leveraging __swap_entries_free() helper function.
> >>
> >> Signed-off-by: Kemeng Shi <shikemeng@huaweicloud.com>
> >> ---
> >> mm/swapfile.c | 30 ++++++++++++++++++++----------
> >> 1 file changed, 20 insertions(+), 10 deletions(-)
> >>
> >> diff --git a/mm/swapfile.c b/mm/swapfile.c
> >> index 5a775456e26c..7c886f9dd6f9 100644
> >> --- a/mm/swapfile.c
> >> +++ b/mm/swapfile.c
> >> @@ -1347,6 +1347,25 @@ static struct swap_info_struct *_swap_info_get(swp_entry_t entry)
> >> return NULL;
> >> }
> >>
> >> +static inline void __swap_entries_free(struct swap_info_struct *si,
> >> + struct swap_cluster_info *ci,
> >> + swp_entry_t entry, unsigned int nr_pages)
> >> +{
> >> + unsigned long offset = swp_offset(entry);
> >> +
> >> + VM_BUG_ON(cluster_is_empty(ci));
> >> + VM_BUG_ON(ci->count < nr_pages);
> >> +
> >> + ci->count -= nr_pages;
> >> + mem_cgroup_uncharge_swap(entry, nr_pages);
> >> + swap_range_free(si, offset, nr_pages);
> >> +
> >> + if (!ci->count)
> >> + free_cluster(si, ci);
> >> + else
> >> + partial_free_cluster(si, ci);
> >> +}
> >> +
> >> static unsigned char swap_entry_put_locked(struct swap_info_struct *si,
> >> unsigned long offset,
> >> unsigned char usage)
> >> @@ -1525,22 +1544,13 @@ static void swap_entry_range_free(struct swap_info_struct *si,
> >>
> >> /* It should never free entries across different clusters */
> >> VM_BUG_ON(ci != offset_to_cluster(si, offset + nr_pages - 1));
> >> - VM_BUG_ON(cluster_is_empty(ci));
> >> - VM_BUG_ON(ci->count < nr_pages);
> >>
> >> - ci->count -= nr_pages;
> >> do {
> >> VM_BUG_ON(*map != SWAP_HAS_CACHE);
> >> *map = 0;
> >> } while (++map < map_end);
> >>
> >> - mem_cgroup_uncharge_swap(entry, nr_pages);
> >> - swap_range_free(si, offset, nr_pages);
> >> -
> >> - if (!ci->count)
> >> - free_cluster(si, ci);
> >> - else
> >> - partial_free_cluster(si, ci);
> >> + __swap_entries_free(si, ci, entry, nr_pages);
> >> }
> >>
> >> static void cluster_swap_free_nr(struct swap_info_struct *si,
> >> --
> >> 2.30.0
> >>
> >>
> >
> > Hi Kemeng,
> Hello Kairui,
>
> Thanks for feedback.
> >
> > This patch is a bit too trivial to be a standalone one, you can fold
> > it with the later one easily. Also you may want to carry the
> > VM_BUG_ON(ci != offset_to_cluster(si, offset + nr_pages - 1)); check
> > as well.
> Sure, I will do this in next version.
> >
> > But, that is basically just renaming swap_entry_range_free, you may
> > just remove the HAS_CACHE check as you rename it, that way the changes
> > should be cleaner.
> >
> Sorry, I don't quite follow. Are you suggesting that should fold this
> patch to later one which removes the HAS_CACHE check and renmae the
> swap_entry_range_free.
Hi,
Just some of my nitpicks :)
After you move these parts out of swap_entry_put_locked, there is
almost nothing left in swap_entry_put_locked except an "open coded
memset". And in your next patch (also after the whole series), all
callers of __swap_entries_free will have to call an "open coded
memset" anyway, so these changes seem redundant and could be improved.
BTW your next patch has a typo in the commit message:
s/__swap_entriy_free/__swap_entries_free/g.
>
> Thanks,
> Kemeng
>
next prev parent reply other threads:[~2025-03-14 7:48 UTC|newest]
Thread overview: 25+ messages / expand[flat|nested] mbox.gz Atom feed top
2025-03-13 21:05 [PATCH 0/9] Minor cleanups and improvements to swap freeing code Kemeng Shi
2025-03-13 21:05 ` [PATCH 1/9] mm: swap: rename __swap_[entry/entries]_free[_locked] to swap_[entry/entries]_put[_locked] Kemeng Shi
2025-03-14 20:37 ` Tim Chen
2025-03-13 21:05 ` [PATCH 2/9] mm: swap: factor out the actual swap entry freeing logic to new helper Kemeng Shi
2025-03-13 17:42 ` Kairui Song
2025-03-14 7:32 ` Kemeng Shi
2025-03-14 7:47 ` Kairui Song [this message]
2025-03-14 8:39 ` Kemeng Shi
2025-03-13 21:05 ` [PATCH 3/9] mm: swap: use __swap_entry_free() to free swap entry in swap_entry_put_locked() Kemeng Shi
2025-03-14 20:59 ` Tim Chen
2025-03-13 21:05 ` [PATCH 4/9] mm: swap: remove unneeded VM_BUG_ON(*map != SWAP_HAS_CACHE) in swap_entry_range_free() Kemeng Shi
2025-03-14 21:09 ` Tim Chen
2025-03-13 21:05 ` [PATCH 5/9] mm: swap: use swap_entries_free() drop last 1 flag in swap_entries_put_nr() Kemeng Shi
2025-03-14 21:21 ` Tim Chen
2025-03-13 21:05 ` [PATCH 6/9] mm: swap: drop last SWAP_MAP_SHMEM flag in batch " Kemeng Shi
2025-03-14 21:34 ` Tim Chen
2025-03-13 21:05 ` [PATCH 7/9] mm: swap: free each cluster individually in swap_entries_put_map_nr() Kemeng Shi
2025-03-14 20:53 ` Tim Chen
2025-03-17 17:30 ` Tim Chen
2025-03-13 21:05 ` [PATCH 8/9] mm: swap: factor out helper to drop cache of entries within a single cluster Kemeng Shi
2025-03-15 0:24 ` Tim Chen
2025-03-13 21:05 ` [PATCH 9/9] mm: swap: replace cluster_swap_free_nr() with swap_entries_put_[map/cache]() Kemeng Shi
2025-03-17 18:23 ` Tim Chen
2025-03-14 20:27 ` [PATCH 0/9] Minor cleanups and improvements to swap freeing code Tim Chen
2025-03-18 1:29 ` Kemeng Shi
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='CAMgjq7Cq30Kb-Wysq+GkV4ZAj-PKQQaEg_YQzwJ=6COtS6k_Yw@mail.gmail.com' \
--to=ryncsn@gmail.com \
--cc=akpm@linux-foundation.org \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-mm@kvack.org \
--cc=shikemeng@huaweicloud.com \
/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