Re: spl question

2015-07-29 Thread Maxime Villard
Le 29/07/2015 17:22, Taylor R Campbell a écrit : Date: Wed, 29 Jul 2015 07:59:46 +0200 From: Maxime Villard m...@m00nbsd.net What happens if the kernel calls splx(s) twice? And what happens if it forgets to call splx(s)? Like: s = splnet(); [...] NOT

Re: spl question

2015-07-29 Thread Greg Troxel
Maxime Villard m...@m00nbsd.net writes: What happens if the kernel calls splx(s) twice? And what happens if it forgets to call splx(s)? Like: s = splnet(); [...] NOT RELATED TO S return; NO SPLX(S) splx(s) twice (with the same s, saved from a single splnet) is

spl question

2015-07-29 Thread Maxime Villard
What happens if the kernel calls splx(s) twice? And what happens if it forgets to call splx(s)? Like: s = splnet(); [...] NOT RELATED TO S return; NO SPLX(S) I guess it creates some inconsistency, right?