hi, now we are working on intercepting the "do_page_fault" interrupt
and log some information. since we are in kernel level, i think we
cannot use printf or so. so we are thinking about to adopt the system
call "syslog". could we just invoke syslog() inside the
"do_page_fault" handler? will that work? i see from the source code
that it allows interrupt by "local_irq_enable". but just want to make
sure. thanks in advance. :)
ps. also another two problem, how to get current system time and how
to do TCP/IP connection in kernel level. thanks.:)
hai