Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

bcachefs: add missing __GFP_NOWARN

Signed-off-by: Kent Overstreet <kent.overstreet@linux.dev>

+1 -1
+1 -1
fs/bcachefs/btree_trans_commit.c
··· 415 415 return 0; 416 416 417 417 new_u64s = roundup_pow_of_two(u64s); 418 - new_k = krealloc(ck->k, new_u64s * sizeof(u64), GFP_NOWAIT); 418 + new_k = krealloc(ck->k, new_u64s * sizeof(u64), GFP_NOWAIT|__GFP_NOWARN); 419 419 if (unlikely(!new_k)) 420 420 return btree_key_can_insert_cached_slowpath(trans, flags, path, new_u64s); 421 421