Module Name: src
Committed By: riastradh
Date: Mon Dec 30 04:50:57 UTC 2013
Modified Files:
src/sys/external/bsd/drm2/linux [riastradh-drm2]: linux_work.c
Log Message:
Make Linux workqueues at IPL_VM for now.
To generate a diff of this commit:
cvs rdiff -u -r1.1.2.5 -r1.1.2.6 src/sys/external/bsd/drm2/linux/linux_work.c
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: src/sys/external/bsd/drm2/linux/linux_work.c
diff -u src/sys/external/bsd/drm2/linux/linux_work.c:1.1.2.5 src/sys/external/bsd/drm2/linux/linux_work.c:1.1.2.6
--- src/sys/external/bsd/drm2/linux/linux_work.c:1.1.2.5 Mon Dec 30 04:50:48 2013
+++ src/sys/external/bsd/drm2/linux/linux_work.c Mon Dec 30 04:50:57 2013
@@ -1,4 +1,4 @@
-/* $NetBSD: linux_work.c,v 1.1.2.5 2013/12/30 04:50:48 riastradh Exp $ */
+/* $NetBSD: linux_work.c,v 1.1.2.6 2013/12/30 04:50:57 riastradh Exp $ */
/*-
* Copyright (c) 2013 The NetBSD Foundation, Inc.
@@ -30,7 +30,7 @@
*/
#include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: linux_work.c,v 1.1.2.5 2013/12/30 04:50:48 riastradh Exp $");
+__KERNEL_RCSID(0, "$NetBSD: linux_work.c,v 1.1.2.6 2013/12/30 04:50:57 riastradh Exp $");
#include <sys/types.h>
#include <sys/param.h>
@@ -116,7 +116,7 @@ alloc_ordered_workqueue(const char *name
wq = kmem_alloc(sizeof(*wq), KM_SLEEP);
error = workqueue_create(&wq->wq_workqueue, name, &linux_worker,
- wq, PRI_NONE, IPL_NONE, flags);
+ wq, PRI_NONE, IPL_VM, flags);
if (error) {
kmem_free(wq, sizeof(*wq));
return NULL;