Re: freebsd-hackers Digest, Vol 305, Issue 6

2009-02-03 Thread Guillaume Ballet
On Sat, Jan 31, 2009 at 1:00 PM, freebsd-hackers-requ...@freebsd.org wrote: Message: 4 Date: Fri, 30 Jan 2009 09:41:58 -0800 From: Matthew Fleming matthew.flem...@isilon.com Subject: Dynamic ddb commands To: freebsd-hackers@freebsd.org Message-ID: 127318.13748.101.ca...@amaretto

Re: Fw: request responsibility timeout

2009-02-03 Thread Dominic Fandrey
Mark Linimon wrote: On Mon, Feb 02, 2009 at 05:17:38PM +0100, Dominic Fandrey wrote: I want to request a responsibility timeout for bin/120784 (with bugmeister hat) AFAIK no one else other than rodrigc has been doing work on the mount utilities, so I don't know who else to assign it to.

Re: usinig cvs diff to make a patch

2009-02-03 Thread Garance A Drosihn
At 2:17 PM -0500 2/3/09, Aryeh M. Friedman wrote: I use a local cvs repo and I have modified a port and which to submit an update for it how do I generate a patch file with cvs (cvs diff seems to give a unusable format)? try: cvs diff -u In my case, i have added the following line to my

Re: usinig cvs diff to make a patch

2009-02-03 Thread Chuck Robey
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Aryeh M. Friedman wrote: I use a local cvs repo and I have modified a port and which to submit an update for it how do I generate a patch file with cvs (cvs diff seems to give a unusable format)? ___

Re: usinig cvs diff to make a patch

2009-02-03 Thread Tom Evans
On Tue, 2009-02-03 at 14:32 -0500, Chuck Robey wrote: Aryeh M. Friedman wrote: I use a local cvs repo and I have modified a port and which to submit an update for it how do I generate a patch file with cvs (cvs diff seems to give a unusable format)?

pmap.h: No such file or directory---- Debugging error

2009-02-03 Thread Kamlesh Patel
Hi All, I have two system one is Debug and another is Target machine. I am debugging using kgdb from Debug machine. Line no: 272 into the function vm_page_startup( vaddr ) of vm_page.c - Freebsd 7.0, mapped=pmap() is there. when i press S (step by step debug) then (kgdb)s pmap_map( , , , ,)

Re: pmap.h: No such file or directory---- Debugging error

2009-02-03 Thread Julian Elischer
Kamlesh Patel wrote: Hi All, I have two system one is Debug and another is Target machine. I am debugging using kgdb from Debug machine. Line no: 272 into the function vm_page_startup( vaddr ) of vm_page.c - Freebsd 7.0, mapped=pmap() is there. when i press S (step by step debug) then

Re: usinig cvs diff to make a patch

2009-02-03 Thread Dimitry Andric
On 2009-02-03 20:17, Aryeh M. Friedman wrote: I use a local cvs repo and I have modified a port and which to submit an update for it how do I generate a patch file with cvs (cvs diff seems to give a unusable format)? Use cvs diff -up for unified diff format, with function prototypes.

Re: write-only variables in src/sys/ - possible bugs

2009-02-03 Thread Christian Peron
I started following up on this and ran into an issue for these: sys/net/bpf_buffer.c:133: warning: variable 'dst' is never read sys/net/bpf_buffer.c:134: warning: variable 'count' is never read sys/net/bpf_buffer.c:142: warning: variable 'dst' is never read /* * Scatter-gather data copy from

usinig cvs diff to make a patch

2009-02-03 Thread Aryeh M. Friedman
I use a local cvs repo and I have modified a port and which to submit an update for it how do I generate a patch file with cvs (cvs diff seems to give a unusable format)? ___ freebsd-hackers@freebsd.org mailing list

Re: usinig cvs diff to make a patch

2009-02-03 Thread Scott Ullrich
On Tue, Feb 3, 2009 at 2:17 PM, Aryeh M. Friedman aryeh.fried...@gmail.com wrote: I use a local cvs repo and I have modified a port and which to submit an update for it how do I generate a patch file with cvs (cvs diff seems to give a unusable format)? Maybe try cvs diff -uN ? Scott