Skip to content

Commit 4f996e2

Browse files
committed
percpu: fix synchronization between chunk->map_extend_work and chunk destruction
Atomic allocations can trigger async map extensions which is serviced by chunk->map_extend_work. pcpu_balance_work which is responsible for destroying idle chunks wasn't synchronizing properly against chunk->map_extend_work and may end up freeing the chunk while the work item is still in flight. This patch fixes the bug by rolling async map extension operations into pcpu_balance_work. Signed-off-by: Tejun Heo <[email protected]> Reported-and-tested-by: Alexei Starovoitov <[email protected]> Reported-by: Vlastimil Babka <[email protected]> Reported-by: Sasha Levin <[email protected]> Cc: [email protected] # v3.18+ Fixes: 9c824b6 ("percpu: make sure chunk->map array has available space")
1 parent 28165ec commit 4f996e2

File tree

1 file changed

+36
-21
lines changed

1 file changed

+36
-21
lines changed

mm/percpu.c

Lines changed: 36 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -112,7 +112,7 @@ struct pcpu_chunk {
112112
int map_used; /* # of map entries used before the sentry */
113113
int map_alloc; /* # of map entries allocated */
114114
int *map; /* allocation map */
115-
struct work_struct map_extend_work;/* async ->map[] extension */
115+
struct list_head map_extend_list;/* on pcpu_map_extend_chunks */
116116

117117
void *data; /* chunk data */
118118
int first_free; /* no free below this */
@@ -166,6 +166,9 @@ static DEFINE_MUTEX(pcpu_alloc_mutex); /* chunk create/destroy, [de]pop */
166166

167167
static struct list_head *pcpu_slot __read_mostly; /* chunk list slots */
168168

169+
/* chunks which need their map areas extended, protected by pcpu_lock */
170+
static LIST_HEAD(pcpu_map_extend_chunks);
171+
169172
/*
170173
* The number of empty populated pages, protected by pcpu_lock. The
171174
* reserved chunk doesn't contribute to the count.
@@ -395,13 +398,19 @@ static int pcpu_need_to_extend(struct pcpu_chunk *chunk, bool is_atomic)
395398
{
396399
int margin, new_alloc;
397400

401+
lockdep_assert_held(&pcpu_lock);
402+
398403
if (is_atomic) {
399404
margin = 3;
400405

401406
if (chunk->map_alloc <
402-
chunk->map_used + PCPU_ATOMIC_MAP_MARGIN_LOW &&
403-
pcpu_async_enabled)
404-
schedule_work(&chunk->map_extend_work);
407+
chunk->map_used + PCPU_ATOMIC_MAP_MARGIN_LOW) {
408+
if (list_empty(&chunk->map_extend_list)) {
409+
list_add_tail(&chunk->map_extend_list,
410+
&pcpu_map_extend_chunks);
411+
pcpu_schedule_balance_work();
412+
}
413+
}
405414
} else {
406415
margin = PCPU_ATOMIC_MAP_MARGIN_HIGH;
407416
}
@@ -467,20 +476,6 @@ static int pcpu_extend_area_map(struct pcpu_chunk *chunk, int new_alloc)
467476
return 0;
468477
}
469478

470-
static void pcpu_map_extend_workfn(struct work_struct *work)
471-
{
472-
struct pcpu_chunk *chunk = container_of(work, struct pcpu_chunk,
473-
map_extend_work);
474-
int new_alloc;
475-
476-
spin_lock_irq(&pcpu_lock);
477-
new_alloc = pcpu_need_to_extend(chunk, false);
478-
spin_unlock_irq(&pcpu_lock);
479-
480-
if (new_alloc)
481-
pcpu_extend_area_map(chunk, new_alloc);
482-
}
483-
484479
/**
485480
* pcpu_fit_in_area - try to fit the requested allocation in a candidate area
486481
* @chunk: chunk the candidate area belongs to
@@ -740,7 +735,7 @@ static struct pcpu_chunk *pcpu_alloc_chunk(void)
740735
chunk->map_used = 1;
741736

742737
INIT_LIST_HEAD(&chunk->list);
743-
INIT_WORK(&chunk->map_extend_work, pcpu_map_extend_workfn);
738+
INIT_LIST_HEAD(&chunk->map_extend_list);
744739
chunk->free_size = pcpu_unit_size;
745740
chunk->contig_hint = pcpu_unit_size;
746741

@@ -1129,6 +1124,7 @@ static void pcpu_balance_workfn(struct work_struct *work)
11291124
if (chunk == list_first_entry(free_head, struct pcpu_chunk, list))
11301125
continue;
11311126

1127+
list_del_init(&chunk->map_extend_list);
11321128
list_move(&chunk->list, &to_free);
11331129
}
11341130

@@ -1146,6 +1142,25 @@ static void pcpu_balance_workfn(struct work_struct *work)
11461142
pcpu_destroy_chunk(chunk);
11471143
}
11481144

1145+
/* service chunks which requested async area map extension */
1146+
do {
1147+
int new_alloc = 0;
1148+
1149+
spin_lock_irq(&pcpu_lock);
1150+
1151+
chunk = list_first_entry_or_null(&pcpu_map_extend_chunks,
1152+
struct pcpu_chunk, map_extend_list);
1153+
if (chunk) {
1154+
list_del_init(&chunk->map_extend_list);
1155+
new_alloc = pcpu_need_to_extend(chunk, false);
1156+
}
1157+
1158+
spin_unlock_irq(&pcpu_lock);
1159+
1160+
if (new_alloc)
1161+
pcpu_extend_area_map(chunk, new_alloc);
1162+
} while (chunk);
1163+
11491164
/*
11501165
* Ensure there are certain number of free populated pages for
11511166
* atomic allocs. Fill up from the most packed so that atomic
@@ -1644,7 +1659,7 @@ int __init pcpu_setup_first_chunk(const struct pcpu_alloc_info *ai,
16441659
*/
16451660
schunk = memblock_virt_alloc(pcpu_chunk_struct_size, 0);
16461661
INIT_LIST_HEAD(&schunk->list);
1647-
INIT_WORK(&schunk->map_extend_work, pcpu_map_extend_workfn);
1662+
INIT_LIST_HEAD(&schunk->map_extend_list);
16481663
schunk->base_addr = base_addr;
16491664
schunk->map = smap;
16501665
schunk->map_alloc = ARRAY_SIZE(smap);
@@ -1673,7 +1688,7 @@ int __init pcpu_setup_first_chunk(const struct pcpu_alloc_info *ai,
16731688
if (dyn_size) {
16741689
dchunk = memblock_virt_alloc(pcpu_chunk_struct_size, 0);
16751690
INIT_LIST_HEAD(&dchunk->list);
1676-
INIT_WORK(&dchunk->map_extend_work, pcpu_map_extend_workfn);
1691+
INIT_LIST_HEAD(&dchunk->map_extend_list);
16771692
dchunk->base_addr = base_addr;
16781693
dchunk->map = dmap;
16791694
dchunk->map_alloc = ARRAY_SIZE(dmap);

0 commit comments

Comments
 (0)