Re: Panics when using Mylex RAID with SMP under RELENG_4

2000-05-02 Thread James FitzGibbon
* Drew Eckhardt ([EMAIL PROTECTED]) [000502 13:24]: > In message <[EMAIL PROTECTED]>, [EMAIL PROTECTED] writes: > >I am trying to run a Mylex Acceleraid 1100 in a Dell Poweredge 2450. > > What is a Dell Poweredge 2450, in terms of chipset and processors? Dual 600 PIII, 256k cache. 512mb PC13

Re: lpr: order of print requests

2000-05-02 Thread Lorenzo Iania
I don't know if I make any strange mistake, but I have done the following simple thing.     File p.c :   #include   FILE    *fp ;   main(){register int    i   ;   for (i=0;i<1000;i++)    {    fp=popen("lpr -Plp","w");    fprintf(fp,"Richiesta N. %d\n",i);

Re: lpr: order of print requests

2000-05-02 Thread Mike Walker
Submitting the files with a single command should prevent reordering. lpc's topq command can be used to move a job to the top of the queue. Printing small jobs first is a desirable feature. Too often I've found a dozen people waiting while large jobs tied up the printers and that user wasn't pre

Re: Panics when using Mylex RAID with SMP under RELENG_4

2000-05-02 Thread Drew Eckhardt
In message <[EMAIL PROTECTED]>, [EMAIL PROTECTED] writes: >I am trying to run a Mylex Acceleraid 1100 in a Dell Poweredge 2450. What is a Dell Poweredge 2450, in terms of chipset and processors? >When >running rawio against the mylex partition, the system panics within 2 >minutes, always with

Panics when using Mylex RAID with SMP under RELENG_4

2000-05-02 Thread James FitzGibbon
I am trying to run a Mylex Acceleraid 1100 in a Dell Poweredge 2450. When running rawio against the mylex partition, the system panics within 2 minutes, always with a trap #29. I have kernel dumps for four panics, but kgdb doesn't show any similarities between the panics (other than that they ar

Toshiba 4260 screen problem

2000-05-02 Thread Dan Moschuk
Greetings, I've got myself a bright new shiny Toshiba 4260 laptop, with one small problem. I cannot seem to get the screen any bigger than a small window (similiar to Fn + F on my Vaio). Any ideas how I can get this full screen? -Dan -- Dan Moschuk ([EMAIL PROTECTED]) "Don't get even -- get

Re: lpr: order of print requests

2000-05-02 Thread Lorenzo Iania
Warren Losh wrote: > LPR queues up the reuqests and prints them in order smallest to > largest to reduce the average wait time for a job at the expense of > having a larger standard deviation in the wait times for jobs. Maybe > this is what you are running into. I don't know if there's a way to

Re: testers for PR 17698

2000-05-02 Thread Sheldon Hearn
On Tue, 02 May 2000 15:45:04 +0200, Johan Karlsson wrote: > Did you get any alpha/pc98 testers for the patch in PR 17698 Not yet, but since I know that lots of people have been away the last two weeks, I'd like to wait another week before I go ahead without review. Ciao, Sheldon. To Unsubs

Where to send PC98 review requests

2000-05-02 Thread Sheldon Hearn
Hi folks, I have patches that I'd like to run by PC98 people for testing. What mailing list should I send them to? Ciao, Sheldon. To Unsubscribe: send mail to [EMAIL PROTECTED] with "unsubscribe freebsd-hackers" in the body of the message

testers for PR 17698

2000-05-02 Thread Johan Karlsson
Hi Sheldon, Did you get any alpha/pc98 testers for the patch in PR 17698 see http://www.FreeBSD.org/cgi/getmsg.cgi?fetch=515536+522235+/usr/local/www/db /text/2000/freebsd-hackers/2402.freebsd-hacker Even if you didn't maybe you can commit it and MFC to 4-Stable. Thanks Johan To Unsubsc

mbufs & ip stack

2000-05-02 Thread MATTHEW JOHN,LUCKIE
Hi I am writing some custom code into the freebsd ip stack (as a project) I am trying to get the payload of an ip packet out of an mbuf and cast it to the type of data being carried (an ipmp header). When i try to get the ipmp_hdr out of the mbuf, and try to do some work with it, i seem to be r

Re: lpr: order of print requests

2000-05-02 Thread Lorenzo Iania
Konrad Heuer wrote    > Hmm, I've never seen such a strange behaviour. Lpd should do FIFO. Could> you give some more infos about your environment (os release, input filter> program, printer type)? Yes, I think it's a very strange behaviour. In effect in the file

bug (?) in trapsignal

2000-05-02 Thread Dimitri Tombroff
Hi all, I was having a look at the last kern_sig.c and the following seems wrong : /* * Send a signal caused by a trap to the current process. * If it will be caught immediately, deliver it with correct code. * Otherwise, post it normally. */ void trapsignal(p, sig, code) struct proc *p; r

Re: Toshiba 4260 screen problem

2000-05-02 Thread Eric D. Futch
I recall someone on the freebsd-mobile mailing list having a similar problem. What I told them to try was using options VESA in their kernel config or use the vesa.ko kernel module. I looked at it a little more closely and it appears that you might also need the SC_PIXEL_MODE option in your kern

Re: /usr/share/examples/cvsup -> /usr/local/share/examples/cvsup

2000-05-02 Thread Nik Clayton
On Mon, May 01, 2000 at 07:25:17AM -0700, Peter Wemm wrote: > Nik Clayton wrote: > > Would anyone object to pulling /usr/share/examples/cvsup out of the base > > system, and into /usr/local/share/examples/cvsup, to be installed by the > > CVSup port? There's no technical reason for the change, bu

PROBLEM FOUND (sort of): Re: lpr: order of print requests

2000-05-02 Thread Chris Dillon
On Tue, 2 May 2000, Konrad Heuer wrote: > > On Tue, 2 May 2000, Lorenzo Iania wrote: > > > Warren Losh wrote: > > > > > LPR queues up the reuqests and prints them in order smallest to > > > largest to reduce the average wait time for a job at the expense of > > > having a larger standard devia

Re: PROBLEM FOUND (sort of): Re: lpr: order of print requests

2000-05-02 Thread Ira L Cooper
I'd bet it does, quicksort is not a stable sort and all of your print requests are the same length. -Ira To Unsubscribe: send mail to [EMAIL PROTECTED] with "unsubscribe freebsd-hackers" in the body of the message

Re: PROBLEM FOUND (sort of): Re: lpr: order of print requests

2000-05-02 Thread Dan Nelson
In the last episode (May 02), Chris Dillon said: > On Tue, 2 May 2000, Konrad Heuer wrote: > > Hmm, I've never seen such a strange behaviour. Lpd should do FIFO. > > Could you give some more infos about your environment (os release, > > input filter program, printer type)? Aha. Yes, it _does_ do

Re: lpr: order of print requests

2000-05-02 Thread Garance A Drosihn
At 2:09 PM -0600 5/1/00, Warner Losh wrote: >LPR queues up the reuqests and prints them in order smallest to >largest to reduce the average wait time for a job at the expense of >having a larger standard deviation in the wait times for jobs. Maybe >this is what you are running into. I don't know

Re: PROBLEM FOUND (sort of): Re: lpr: order of print requests

2000-05-02 Thread Garance A Drosihn
At 5:47 PM -0500 5/2/00, Dan Nelson wrote: >In the last episode (May 02), Chris Dillon said: > > On Tue, 2 May 2000, Konrad Heuer wrote: > > > Hmm, I've never seen such a strange behaviour. Lpd should do FIFO. > > > Could you give some more infos about your environment (os release, > > > input fil

GET OUT THE VOTE! Please support Java port to *BSD

2000-05-02 Thread John Daniels
Hi: Since last week when the message below and other messages began to circulate, approximately 230 votes have been cast for the java port to *BSD. This has raised our total count to 3182, an increase of 7.75%. Additionally, it is heartening to read the comments left by those who have voted whi

Re: GET OUT THE VOTE! Please support Java port to *BSD

2000-05-02 Thread Zhihui Zhang
> >Please support the Java on *BSD effort by voting for the RFE at: > >http://developer.java.sun.com/developer/bugParade/bugs/4288745.html If you > >are not already a member of Sun's Java Developers Connection, > >you will need to register before voting (membership is free). I have spent five mi

Which is the best filesystem to share data between fBSD and nBSD?

2000-05-02 Thread Alexey N. Dokuchaev
Hello! I plan to install three flawors of BSD: Free, Net, and possibly Open. I'm thinking of what is the best way of sharing data between them? If their FFS filesystems has the same layout, so I don't really have to care about it, simply mounting the slices, or there are certain differences, an

Re: 3Com's all-in-one XJack modem/NIC

2000-05-02 Thread Warner Losh
In message <[EMAIL PROTECTED]> Matt Peterson writes: : when can we expect 4.0-RELEASE PAO floppies?). Thx. There are no current plans for a PAO based on 4.0. Instead, the strategy has been to integrate the PAO 3x stuff into -current and then MFC as appropriate into 4.x stable. This is just my

Re: testers for PR 17698

2000-05-02 Thread Warner Losh
In message <[EMAIL PROTECTED]> Sheldon Hearn writes: : > Did you get any alpha/pc98 testers for the patch in PR 17698 : : Not yet, but since I know that lots of people have been away the last : two weeks, I'd like to wait another week before I go ahead without : review. There's a [EMAIL PROTECT

Re: PROBLEM FOUND: Re: lpr: order of print requests

2000-05-02 Thread Garance A Drosihn
At 8:37 PM -0400 5/2/00, Garance A Drosihn wrote: >This should not break anything. I will write up an update which >does this, unless someone thinks it is a BadIdea(tm) for some reason. >Someone else would have to commit the change to the official source, >but at least Lorenzo could try that chan

MAKE MONEY FOR DOING NOTHING!!!!!!!!! PROMISE

2000-05-02 Thread hspio
WILL SURF FOR YOU, JUST FOR FILLING OUT A SMALL FORM Do you realize how valuable you are as an Internet user? Did you know that you can be paid when you’re on the Web? AND off the WEB!! Interested? Become an AllAdvantage.com member now! It's free to join and your privacy is completely prote

I Surf, YOU GET PAID!!!!!! Promise

2000-05-02 Thread hspio
I WILL SURF FOR YOU, JUST FOR FILLING OUT A SMALL FORM Do you realize how valuable you are as an Internet user? Did you know that you can be paid when you’re on the Web? AND off the WEB!! Interested? Become an AllAdvantage.com member now! It's free to join and your privacy is completely prot

I Surf, YOU GET PAID!!!!!! Promise

2000-05-02 Thread hspio
I WILL SURF FOR YOU, JUST FOR FILLING OUT A SMALL FORM Do you realize how valuable you are as an Internet user? Did you know that you can be paid when you’re on the Web? AND off the WEB!! Interested? Become an AllAdvantage.com member now! It's free to join and your privacy is completely prot

Re: MAKE MONEY FOR DOING NOTHING!!!!!!!!! PROMISE

2000-05-02 Thread Dhar
> Join now (there's no survey to fill out) at > http://www.alladvantage.com/home.asp?refid=LZG150 and please > use my membership ID (LZG-150) when asked if you were referred > by someone. And http://cheetahtech.cjb.net Darling, here is what you get for spamming us. I guess others on th

Re: Spammage: I Surf, YOU GET PAID!!!!!! Promise

2000-05-02 Thread Dragos Ruiu
I would recommend that everyone who received this forward it back to Mr. Pio at [EMAIL PROTECTED] to make the point that this is unacceptable behaviour. Just once each should suffice, and not contravene any usage policies :-). I did... Call it distributed spam negative reinforcement. :-) :-) :

crash dump on swap device

2000-05-02 Thread NandaKumar P.K.
Hi, I wanted to analyse a driver crash dump in FreeBSD 3.4. I specified the dumpdevice in rc.conf, but i am not finding anything under the /var/crash directory. I made the kernel crash in my test PCI driver using an invalid access. (writing to 0x). The reason may be that the kernel crashe

Re: lpr: order of print requests

2000-05-02 Thread Konrad Heuer
On Tue, 2 May 2000, Lorenzo Iania wrote: > Warren Losh wrote: > > > LPR queues up the reuqests and prints them in order smallest to > > largest to reduce the average wait time for a job at the expense of > > having a larger standard deviation in the wait times for jobs. Maybe > > this is what