This is the mail archive of the systemtap@sourceware.org mailing list for the systemtap project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

[Bug translator/2525] NMI Watchdog lockup with gettimeofday and do_timer probe


------- Additional Comments From bibo dot mao at intel dot com  2006-04-07 03:43 -------
do_timer is called by timer_interrupt() function, there is write_seqlock
(&xtime_lock) sentence, and in do_gettimeofday sentence there will be 
  do{
       read_seqbegin(&xtime_lock);
       ...
    } while(read_seqretry(&xtime_lock, seq));

write_seqlock will increase xtime_lock.sequence by 1, interrupt is disabled 
when calling do_gettimeofday() function, there will be dead loop in 
do_gettimeofday () function.

-- 


http://sourceware.org/bugzilla/show_bug.cgi?id=2525

------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]