Re: hash.h warnings

2007-04-02 Thread Andrew Thompson
On Sun, Mar 25, 2007 at 03:18:42AM -0700, Garrett Cooper wrote: > On Mar 25, 2007, at 1:38 AM, Andrew Thompson wrote: > > >Hi, > > > > > >There was a discussion late last year about how to fix the warnings in > >sys/sys/hash.h. > > > >http://lists.freebsd.org/pipermail/freebsd-net/2006-October/ >

Re: Wireless card not being detected

2007-04-02 Thread Mike Tancsa
On Sun, 18 Feb 2007 20:56:56 -0500, in sentex.lists.freebsd.hackers you wrote: >Hi Freebsd > > >I have an issue with new card I need to make it work with freebsd, > > >on /var/log/messages I get > > >Feb 18 20:51:55 DAK kernel: pccard0: (manufacturer=0x0192, >produc >t=0x0710, function_type=6) at

Re: Any recent news on Xen support for FreeBSD?

2007-04-02 Thread Kip Macy
Rink has made some progress. I'm cc'ing him. -Kip On 4/2/07, Jaye Mathisen <[EMAIL PROTECTED]> wrote: The fsmware page is significantly dated, and I just am not sure what's going on. I was just curious if there was a better or updated status available. Thanks for your time. ___

Re: Deny system call using ptrace

2007-04-02 Thread Stanislav Ochotnicky
My mistake. I noticed later that ptrace is actually called just before system call, however system call code and arguments are already read in kernel, and are not re-read after ptrace finished. It simply does not count with that possiblity. -- cut here --- if (error == 0) { td->td_retv

Re: Deny system call using ptrace

2007-04-02 Thread w0rm
Stanislav Ochotnicky wrote: > Problem is, that FreeBSD kernel seems to ignore changed register, and > execute original system call. Oh well...So I'll just (try) to answer myself :) The problem seems to be, as far as I can tell that syscall() routine fills in syscall code and arguments, then does

RE: Deny system call using ptrace

2007-04-02 Thread Alexander Leidinger
Quoting Thijs Eilander <[EMAIL PROTECTED]> (from Mon, 2 Apr 2007 00:48:20 +0200): If you are interested in doing some development to make it work, I am porting systrace to FreeBSD but due to time restrictions development is slow. More information about systrace can be found on http://www.citi.

Any recent news on Xen support for FreeBSD?

2007-04-02 Thread Jaye Mathisen
The fsmware page is significantly dated, and I just am not sure what's going on. I was just curious if there was a better or updated status available. Thanks for your time. ___ freebsd-hackers@freebsd.org mailing list http://lists.freebsd.org/mailma

FreeBSD Status Reports due Saturday (04/07)

2007-04-02 Thread Max Laier
Hi, quick note from the "better late than never"-department. This is a reminder that we collect status reports every three months. The reports for the first three month (January - Now) are due by Saturday, April 7. We are looking for anything FreeBSD related: Code, Advocacy, Vendor reports,

Re: Deny system call using ptrace

2007-04-02 Thread Stanislav Ochotnicky
Thijs Eilander wrote: > If you are interested in doing some development to make it work, I am > porting systrace to FreeBSD but due to time restrictions development is > slow. More information about systrace can be found on > http://www.citi.umich.edu/u/provos/systrace/ and www.systrace.org Yes I