Skip site navigation (1)Skip section navigation (2)
Date:      Sun, 27 Apr 1997 19:42:26 +0200
From:      j@uriah.heep.sax.de (J Wunsch)
To:        hackers@hub.freebsd.org
Cc:        max@rnd.runnet.ru (Maxim Bolotin)
Subject:   Re: network driver questions [Was: Universities using FreeBSD]
Message-ID:  <19970427194226.UX39331@uriah.heep.sax.de>
References:  <199704271130.EAA08520@hub.freebsd.org> <Pine.BSF.3.95q.970427155215.22013A-100000@altos.rnd.runnet.ru>

next in thread | previous in thread | raw e-mail | index | archive | help
As Maxim Bolotin wrote:

> 1. How can I disable interrupts when i transmit packet to the card buffer?
>    I think I have to disable it, 'cause when I transffer big files, I have
>    many underrun interrupts.

	int s;

	s = splimp();
	do_transfer();
	splx(s);

SEE ALSO
	spl(9)

> 2. What do I have to do to work NFS? We've some strange hangs during
>    transffer.

Read the hackers and current lists.  A lot of discussions happened
lately.  Maybe your problem has also been mentioned.

-- 
cheers, J"org

joerg_wunsch@uriah.heep.sax.de -- http://www.sax.de/~joerg/ -- NIC: JW11-RIPE
Never trust an operating system you don't have sources for. ;-)



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?19970427194226.UX39331>