9front - general discussion about 9front
 help / color / mirror / Atom feed
* [9front] [PATCH] devproc: use the correct limit when warning that conf.nproc is too high
@ 2021-06-07  8:39 james palmer
  2021-06-08 23:59 ` [9front] " Anthony Martin
  0 siblings, 1 reply; 3+ messages in thread
From: james palmer @ 2021-06-07  8:39 UTC (permalink / raw)
  To: 9front

---
diff afe3c1c89a9ead7459691e9bf0d4e28f232bb929 9eb2b302e6240695960f5ce37c68e40a96da44d6
--- a/sys/src/9/port/devproc.c	Mon Jun  7 03:17:30 2021
+++ b/sys/src/9/port/devproc.c	Mon Jun  7 09:39:21 2021
@@ -281,7 +281,7 @@
 static void
 procinit(void)
 {
-	if(conf.nproc >= (1<<(16-QSHIFT))-1)
+	if(conf.nproc >= (1<<23)-1)
 		print("warning: too many procs for devproc\n");
 }
 

^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2021-06-09 21:31 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-06-07  8:39 [9front] [PATCH] devproc: use the correct limit when warning that conf.nproc is too high james palmer
2021-06-08 23:59 ` [9front] " Anthony Martin
2021-06-09  2:22   ` ori

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).