plan 9 kernel history: overview | file list | diff list

2002/0710/pc/devether.c (diff list | history)

2002/0703/sys/src/9/pc/devether.c:414,4272002/0710/sys/src/9/pc/devether.c:414,427 (short | long | prev | next)
2002/0403    
	print(buf); 
1992/0410    
 
2002/0403    
	if(ether->mbps >= 100){ 
		netifinit(ether, name, Ntypes, 256*1024); 
2002/0710    
		netifinit(ether, name, Ntypes, 512*1024); 
2002/0403    
		if(ether->oq == 0) 
			ether->oq = qopen(256*1024, 1, 0, 0); 
	} 
	else{ 
		netifinit(ether, name, Ntypes, 65*1024); 
2002/0710    
		netifinit(ether, name, Ntypes, 128*1024); 
2002/0403    
		if(ether->oq == 0) 
			ether->oq = qopen(65*1024, 1, 0, 0); 
2002/0710    
			ether->oq = qopen(128*1024, 1, 0, 0); 
2002/0403    
	} 
	if(ether->oq == 0) 
		panic("etherreset %s", name); 


source code copyright © 1990-2005 Lucent Technologies; see license
Plan 9 distribution
comments to russ cox (rsc@swtch.com)