XArray: Two fixes for 5.18
- Fix the test suite build for kmem_cache_alloc_lru() - Fix a rare race between split and load -----BEGIN PGP SIGNATURE----- iQEzBAABCgAdFiEEejHryeLBw/spnjHrDpNsjXcpgj4FAmJjBP4ACgkQDpNsjXcp gj5sCQf9GBg/6v9DU3l5VLoiDMFrBrbkrb9ef36uIv4wd9zXv+dECVCcMPtdnWFQ OE8lk+KjcpLa5HQMW/Jluzh2EOnJM6N6mgxsi819LtBREEDDWhIqJ2GgaH19zuNq xtVc0avMEsCB/wFrIatWB9TGYi0xFSS6KQ+23TUhQMw8ILd6l2DzPqXJxuhjXpcs 1pHCu/Q07Q94a+Fni9V2tqTHd9xA2sDcCPRAGsuAM3q+jngeJLYb4qR2z7mv2m+O ON5gsEbozuxu/bYD/g3fBf8iMhe59mtBMNMDM9DVWdPtDJGpFGMNTdn/dXvxDQIn a7pYgYAhBLA0RKBzNhOvCZh6djjOPA== =iXs0 -----END PGP SIGNATURE----- Merge tag 'xarray-5.18a' of git://git.infradead.org/users/willy/xarray Pull xarray fixes from Matthew Wilcox: "Syzbot found a nasty race between large page splitting and page lookup. Details in the commit log, but fortunately it has a reliable reproducer. I thought it better to send this one to you straight away. Also fix the test suite build for kmem_cache_alloc_lru()" * tag 'xarray-5.18a' of git://git.infradead.org/users/willy/xarray: XArray: Disallow sibling entries of nodes tools: Add kmem_cache_alloc_lru()
This commit is contained in:
commit
22f19f6740
@ -207,6 +207,8 @@ static void *xas_descend(struct xa_state *xas, struct xa_node *node)
|
||||
if (xa_is_sibling(entry)) {
|
||||
offset = xa_to_sibling(entry);
|
||||
entry = xa_entry(xas->xa, node, offset);
|
||||
if (node->shift && xa_is_node(entry))
|
||||
entry = XA_RETRY_ENTRY;
|
||||
}
|
||||
|
||||
xas->xa_offset = offset;
|
||||
|
@ -28,7 +28,13 @@ static inline void *kzalloc(size_t size, gfp_t gfp)
|
||||
return kmalloc(size, gfp | __GFP_ZERO);
|
||||
}
|
||||
|
||||
void *kmem_cache_alloc(struct kmem_cache *cachep, int flags);
|
||||
struct list_lru;
|
||||
|
||||
void *kmem_cache_alloc_lru(struct kmem_cache *cachep, struct list_lru *, int flags);
|
||||
static inline void *kmem_cache_alloc(struct kmem_cache *cachep, int flags)
|
||||
{
|
||||
return kmem_cache_alloc_lru(cachep, NULL, flags);
|
||||
}
|
||||
void kmem_cache_free(struct kmem_cache *cachep, void *objp);
|
||||
|
||||
struct kmem_cache *kmem_cache_create(const char *name, unsigned int size,
|
||||
|
@ -25,7 +25,8 @@ struct kmem_cache {
|
||||
void (*ctor)(void *);
|
||||
};
|
||||
|
||||
void *kmem_cache_alloc(struct kmem_cache *cachep, int gfp)
|
||||
void *kmem_cache_alloc_lru(struct kmem_cache *cachep, struct list_lru *lru,
|
||||
int gfp)
|
||||
{
|
||||
void *p;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user