dillon

共 23 篇文章。

How to debug a live FreeBSD kernel?

Kernel

To quote Matthew Dillon:

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
    You can actually run gdb on a live kernel like this:

    gdb -k /dev/mem /path/to/kernel.debug

    You can then use the 'proc' command to switch to a process (give it a
    pid), and do a stack backtrace.  That part only really works if the
    process is blocked on something (i.e. not running).

    But you can also dig around kernel globals and various data structures
    and that can be quite useful on a live system.

					-Matt
					Matthew Dillon 
					<dillon@backplane.com>
参与评论

FreeBSD 4.10-RC3 is delaying again

Development

To summarize the release engineering process: 4.10-RC3 has delayed again so 4.10-RELEASE won’t be released soon. Recently, RELENG_4_10 branch has received several critical bugfixes. I personally requested a MFC for a security vulnerablity related with timedc, and Tim has MFC’ed some other security related fixes. Matthew Dillon has submitted some VM patches (committed by Ken Smith) and they all get into RC3.

阅读全文… ( 本文约 140 字,阅读大致需要 1 分钟 )

Matthew Dillon's most recent VM work

Kernel

From the commit log:

Close an interrupt race between vm_page_lookup() and (typically) a vm_page_sleep_busy() check by using the correct spl protection. An interrupt can occur inbetween the two operations and unbusy/free the page in question, causing the busy check to fail and for the code to fall through and then operate on a page that may have been freed and possibly even reused. Also note that vm_page_grab() had the same issue between the lookup, busy check, and vm_page_busy() call.

阅读全文… ( 本文约 229 字,阅读大致需要 2 分钟 )

Dillon to improve DragonFly's build architecture

Kernel

Matt Dillon always do things which are amazing and earning our respect!! Today he announced a major change in DragonFly’s build architecture, while this will likely to cause some temporary quakes, we believe that the migration will be finished soon and we will have a much better (say, cleaner than FreeBSD’s approach) DragonFly buildworld path!

阅读全文… ( 本文约 182 字,阅读大致需要 1 分钟 )

dillon resumes to work!

Kernel

He is again committing numerous CAPS IPC work. Well, again, is it really 锁骨?

At the same time, Hiten Pandya has done website work. This also inspired me to improve the bachelor’s research site and Candice has reported that the problem has gone.

参与评论

Matt Dillon's VFS integrated package system thought

Kernel

I finally understood what he want, according to his post today:

" Hey, here’s an idea… using the VFS wrapper idea our
‘ports’ system could create a namespace that makes everything
appear to be preinstalled. So instead of CDing somewhere and
typing make, or running an apt-get type of utility, you would
simply run the program you want to run and our package manager
would download and install it on the fly."

阅读全文… ( 本文约 121 字,阅读大致需要 1 分钟 )

Dillon's commit!

Kernel

Despite being hurt in an accident, he finally committed the newtoken commit to DragonFlyBSD!!

阅读全文… ( 本文约 213 字,阅读大致需要 1 分钟 )