From 209d9536c51602ba66440825640417c8cc6fd681 Mon Sep 17 00:00:00 2001 From: Alex Hornung Date: Fri, 23 Apr 2010 06:31:36 +0000 Subject: [PATCH] dsched - Bump diskctx max size to 512 * Bump the maximum size of the diskctx struct to 512, as 256 is too small already for dsched_fq on x86_64. Reported-by: Sascha Wildner --- sys/sys/dsched.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sys/sys/dsched.h b/sys/sys/dsched.h index 8abde03728..6907088304 100644 --- a/sys/sys/dsched.h +++ b/sys/sys/dsched.h @@ -185,7 +185,7 @@ TAILQ_HEAD(dsched_policy_head, dsched_policy); #define DSCHED_THREAD_CTX_MAX_SZ sizeof(struct dsched_thread_ctx) #define DSCHED_THREAD_IO_MAX_SZ 256 -#define DSCHED_DISK_CTX_MAX_SZ 256 +#define DSCHED_DISK_CTX_MAX_SZ 512 #define DSCHED_POLICY_MODULE(name, evh) \ static moduledata_t name##_mod = { \ -- 2.41.0