diff options
author | Jonathan Gray <jsg@cvs.openbsd.org> | 2022-01-20 06:33:04 +0000 |
---|---|---|
committer | Jonathan Gray <jsg@cvs.openbsd.org> | 2022-01-20 06:33:04 +0000 |
commit | c83354204fe0efc9d6659c28438c3aee0e6549d0 (patch) | |
tree | 56348e11d5c1f201b07d37e7d3574c80207f51ed /sys/dev/pci | |
parent | c4780a22570746dd0188808cb7b8d69b2ee2e7ff (diff) |
xa_pool is protected by xa_lock mtx so drop pool ipl to IPL_NONE
Diffstat (limited to 'sys/dev/pci')
-rw-r--r-- | sys/dev/pci/drm/drm_linux.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/dev/pci/drm/drm_linux.c b/sys/dev/pci/drm/drm_linux.c index 6b7eb4ed118..b9bd03985b7 100644 --- a/sys/dev/pci/drm/drm_linux.c +++ b/sys/dev/pci/drm/drm_linux.c @@ -1,4 +1,4 @@ -/* $OpenBSD: drm_linux.c,v 1.87 2022/01/20 03:43:31 jsg Exp $ */ +/* $OpenBSD: drm_linux.c,v 1.88 2022/01/20 06:33:03 jsg Exp $ */ /* * Copyright (c) 2013 Jonathan Gray <jsg@openbsd.org> * Copyright (c) 2015, 2016 Mark Kettenis <kettenis@openbsd.org> @@ -910,7 +910,7 @@ xa_init_flags(struct xarray *xa, gfp_t flags) static int initialized; if (!initialized) { - pool_init(&xa_pool, sizeof(struct xarray_entry), 0, IPL_TTY, 0, + pool_init(&xa_pool, sizeof(struct xarray_entry), 0, IPL_NONE, 0, "xapl", NULL); initialized = 1; } |