Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit f4a66ea8 authored by qctecmdr's avatar qctecmdr Committed by Gerrit - the friendly Code Review server
Browse files

Merge "mm: slub: add type casting in alloc_trace_locations to avoid build warning"

parents 63a6377a 955ebf10
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -6145,7 +6145,7 @@ static int alloc_trace_locations(struct seq_file *seq, struct kmem_cache *s,

		seq_printf(seq,
		"alloc_list: call_site=%pS count=%zu object_size=%zu slab_size=%zu slab_name=%s\n",
			l->addr, l->count, s->object_size, s->size, s->name);
			(void *)l->addr, l->count, s->object_size, s->size, s->name);
#ifdef CONFIG_STACKTRACE
		for (j = 0; j < TRACK_ADDRS_COUNT; j++)
			if (l->addrs[j]) {