Re: [PATCH 2/3] zram: rename internal slot API

From: Sergey Senozhatsky

Date: Wed Jan 14 2026 - 22:01:52 EST


On (26/01/14 04:36), Chris Mason wrote:
> > +static void mark_slot_accessed(struct zram *zram, u32 index)
> > +{
> > + clear_slot_flag(zram, index, ZRAM_IDLE);
> > + clear_slot_flag(zram, index, ZRAM_PP_SLOT);
> > +#ifdef CONFIG_ZRAM_TRACK_ENTRY_ACTIME
> > + zram->table[index].attr.ac_time = ktime_get_boottime();

Hmm, this should have not happened. Thanks for catching this.
Let me take a look.