Skip to content

Commit

Permalink
mm/list_lru.c: remove unused list_lru_from_kmem()
Browse files Browse the repository at this point in the history
Fixes: 0a97c01 ("list_lru: allow explicit memcg and NUMA node selection)
Reported-by: kernel test robot <[email protected]>
Closes: https://lore.kernel.org/oe-kbuild-all/[email protected]/
Cc: Nhat Pham <[email protected]>
Cc: Johannes Weiner <[email protected]>
Cc: Johannes Weiner <[email protected]>
Cc: Bagas Sanjaya <[email protected]>
Signed-off-by: Andrew Morton <[email protected]>
  • Loading branch information
akpm00 committed Dec 20, 2023
1 parent 5143eec commit 4a3bfbd
Showing 1 changed file with 0 additions and 31 deletions.
31 changes: 0 additions & 31 deletions mm/list_lru.c
Original file line number Diff line number Diff line change
Expand Up @@ -59,28 +59,6 @@ list_lru_from_memcg_idx(struct list_lru *lru, int nid, int idx)
}
return &lru->node[nid].lru;
}

static inline struct list_lru_one *
list_lru_from_kmem(struct list_lru *lru, int nid, void *ptr,
struct mem_cgroup **memcg_ptr)
{
struct list_lru_node *nlru = &lru->node[nid];
struct list_lru_one *l = &nlru->lru;
struct mem_cgroup *memcg = NULL;

if (!list_lru_memcg_aware(lru))
goto out;

memcg = mem_cgroup_from_slab_obj(ptr);
if (!memcg)
goto out;

l = list_lru_from_memcg_idx(lru, nid, memcg_kmem_id(memcg));
out:
if (memcg_ptr)
*memcg_ptr = memcg;
return l;
}
#else
static void list_lru_register(struct list_lru *lru)
{
Expand All @@ -105,15 +83,6 @@ list_lru_from_memcg_idx(struct list_lru *lru, int nid, int idx)
{
return &lru->node[nid].lru;
}

static inline struct list_lru_one *
list_lru_from_kmem(struct list_lru *lru, int nid, void *ptr,
struct mem_cgroup **memcg_ptr)
{
if (memcg_ptr)
*memcg_ptr = NULL;
return &lru->node[nid].lru;
}
#endif /* CONFIG_MEMCG_KMEM */

bool list_lru_add(struct list_lru *lru, struct list_head *item, int nid,
Expand Down

0 comments on commit 4a3bfbd

Please sign in to comment.