RE: Odd behavior routed

2008-12-24 Thread Li, Qing
Hi, Could you please provide the ifconfig output for completeness ? Thanks, -- Qing > -Original Message- > From: owner-freebsd-...@freebsd.org [mailto:owner-freebsd- > n...@freebsd.org] On Behalf Of Vladislav V. Prodan > Sent: Wednesday, December 24, 2008 11:33 AM > To: freebsd-curr...

Re: How to access kernel memory from user space

2008-12-24 Thread Gerry Weaver
_ From: Peter Jeremy [mailto:peterjer...@optushome.com.au] To: Gerry Weaver [mailto:ger...@compvia.com] Cc: freebsd-hackers@freebsd.org Sent: Wed, 24 Dec 2008 02:44:45 -0600 Subject: Re: How to access kernel memory from user space On 2008-Dec-22 18:05:34 -0600, Gerry Weaver wrote: >I am

Odd behavior routed

2008-12-24 Thread Vladislav V. Prodan
# uname -a FreeBSD mary-teresa.X 8.0-CURRENT FreeBSD 8.0-CURRENT #0: Wed Dec 24 05:06:55 EET 2008 vla...@mary-teresa.x:/usr/obj/usr/src/sys/mary-teresa.10 amd64 We have two providers on tun1 and tun2. >>/etc/rc.conf: ... gateway_enable="YES" router="/sbin/routed" router_enable="YES"

Re: [Testers wanted] vt100/xterm-support for syscons

2008-12-24 Thread Ed Schouten
* Ed Schouten wrote: > Never mind. Now I can. I forgot to punch in the `. foo^Abar works > correctly, while foo`^Abar does not. I'll see if I can find the bug this > afternoon. Done. Could you please try the latest mpsafetty patch (20081224)? The problem was that the cursor didn&#x

Re: [Testers wanted] vt100/xterm-support for syscons

2008-12-24 Thread Ed Schouten
* Ed Schouten wrote: > * swel...@gmail.com wrote: > > Typing in `tcsh -f' (TERM=xterm) > > > > foo`^Abar > > > > results in > > > > rabfoo` > > > > with *characters* (not cursor) going from left to right. Cursor stays > > at the beginning of line until one types ^R (redisplay). > > Ne

Re: [Testers wanted] vt100/xterm-support for syscons

2008-12-24 Thread Ed Schouten
* swel...@gmail.com wrote: > Typing in `tcsh -f' (TERM=xterm) > > foo`^Abar > > results in > > rabfoo` > > with *characters* (not cursor) going from left to right. Cursor stays > at the beginning of line until one types ^R (redisplay). > Never happens with TERM=cons25 or TERM=vt100. An

Re: How to access kernel memory from user space

2008-12-24 Thread Peter Jeremy
On 2008-Dec-22 18:05:34 -0600, Gerry Weaver wrote: >I am working on a driver that collects various network statistics via >pfil. I have a simple array of structures that I use to store the >statistics. I also have a user space process that needs to collect >these statistics every second or so. Th