Re: kernel debugging and ULE

2012-02-08 Thread Julian Elischer
On 2/7/12 1:50 AM, Andriy Gapon wrote: on 06/02/2012 07:52 Julian Elischer said the following: so if I'm sitting still in the debugger for too long, a hardclock event happens that goes into ULE, which then hits the following KASSERT. KASSERT(pri>= PRI_MIN_BATCH&& pri<= PRI_MAX

Re: kernel debugging and ULE

2012-02-07 Thread John Baldwin
On Monday, February 06, 2012 12:52:58 am Julian Elischer wrote: > so if I'm sitting still in the debugger for too long, a hardclock > event happens that goes into ULE, which then hits the following KASSERT. > > > KASSERT(pri >= PRI_MIN_BATCH && pri <= PRI_MAX_BATCH, >

Re: kernel debugging and ULE

2012-02-07 Thread Andriy Gapon
on 06/02/2012 07:52 Julian Elischer said the following: > so if I'm sitting still in the debugger for too long, a hardclock > event happens that goes into ULE, which then hits the following KASSERT. > > >KASSERT(pri >= PRI_MIN_BATCH && pri <= PRI_MAX_BATCH, > (

kernel debugging and ULE

2012-02-05 Thread Julian Elischer
so if I'm sitting still in the debugger for too long, a hardclock event happens that goes into ULE, which then hits the following KASSERT. KASSERT(pri >= PRI_MIN_BATCH && pri <= PRI_MAX_BATCH, ("sched_priority: invalid priority %d: nice %d, "