public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
* Confirmation request about new 2.4.x. kernel limits
@ 2001-01-04 11:50 A.D.F.
  2001-01-04 11:23 ` Tigran Aivazian
                   ` (2 more replies)
  0 siblings, 3 replies; 17+ messages in thread
From: A.D.F. @ 2001-01-04 11:50 UTC (permalink / raw)
  To: linux-kernel

Hi, I would like to know whether following limits are right for kernel
2.4.x:

Max. N. of CPU:			32	(SMP)
Max. CPU speed:			> 2 Ghz	(up to ?)
Max. RAM size:			64 GB	(any slowness accessing RAM over 4 GB
					 with 32 bit machines ?)
Max. file size:	 		1 TB	(?)
Max. file system size:		2 TB	(?)
Max. N. of files per FS:	2^32	(depending on max. n. of inodes ?)
Max. N. of users/groups:	2^32	(well, that's in theory, probably 						
practical limits, due to RAM usage,
					 access time, etc., are much lower).

Other upper limits, eventually compared with those of latest 2.2.x
kernels, would be appreciated.

	Thanks in advance for your patience.
-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@vger.kernel.org
Please read the FAQ at http://www.tux.org/lkml/

^ permalink raw reply	[flat|nested] 17+ messages in thread
* RE: Confirmation request about new 2.4.x. kernel limits
@ 2001-01-09  4:11 Venkatesh Ramamurthy
  2001-01-09 12:21 ` Matti Aarnio
  2001-01-09 14:05 ` Stephen C. Tweedie
  0 siblings, 2 replies; 17+ messages in thread
From: Venkatesh Ramamurthy @ 2001-01-09  4:11 UTC (permalink / raw)
  To: 'Pavel Machek', adefacc, linux-kernel


	> Max. RAM size:			64 GB	(any slowness
accessing RAM over 4 GB
*	with 32 bit machines ?)
	Imore than 4GB in RAM is bounce buffered, so there is performance
penalty as the data have to be copied into the 4GB RAM area
-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@vger.kernel.org
Please read the FAQ at http://www.tux.org/lkml/

^ permalink raw reply	[flat|nested] 17+ messages in thread
* RE: Confirmation request about new 2.4.x. kernel limits
@ 2001-01-09 15:15 Venkatesh Ramamurthy
  2001-01-09 15:51 ` Andi Kleen
  0 siblings, 1 reply; 17+ messages in thread
From: Venkatesh Ramamurthy @ 2001-01-09 15:15 UTC (permalink / raw)
  To: 'Stephen C. Tweedie', Venkatesh Ramamurthy
  Cc: 'Pavel Machek', adefacc, linux-kernel

> Any memory over 1GB is bounce-buffered, but we don't use that memory
> for anything other than process data pages or file cache, so only
> swapping and disk IO to regular files gets the extra copy.  In
> particular, things like network buffers are still all kept in the low
> 1GB so never need to be buffered.
	[Venkatesh Ramamurthy]  If anything over 1GB is bounce buffered than
what is the purpose of setting the pci_dev->dma_mask field.  On a IA32
system we set it to 32 1's and IA64 to 64 1's - Venkat
>  
> 
-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@vger.kernel.org
Please read the FAQ at http://www.tux.org/lkml/

^ permalink raw reply	[flat|nested] 17+ messages in thread
* RE: Confirmation request about new 2.4.x. kernel limits
@ 2001-01-09 17:35 Venkatesh Ramamurthy
  2001-01-09 17:47 ` Andi Kleen
  0 siblings, 1 reply; 17+ messages in thread
From: Venkatesh Ramamurthy @ 2001-01-09 17:35 UTC (permalink / raw)
  To: 'Andi Kleen', Matti Aarnio, Venkatesh Ramamurthy,
	'Pavel Machek', adefacc, linux-kernel
  Cc: timw


> Problem is that it needs a driver interface change and cooperation from
> the
> drivers. 
	[Venkatesh Ramamurthy]  Atleast the spec for this new interface,
that the driver has to support be prepared? Once this is done we can port
driver by driver to this new standard.

> -Andi
-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@vger.kernel.org
Please read the FAQ at http://www.tux.org/lkml/

^ permalink raw reply	[flat|nested] 17+ messages in thread
* RE: Confirmation request about new 2.4.x. kernel limits
@ 2001-01-09 18:00 Venkatesh Ramamurthy
  0 siblings, 0 replies; 17+ messages in thread
From: Venkatesh Ramamurthy @ 2001-01-09 18:00 UTC (permalink / raw)
  To: 'Andi Kleen', Matti Aarnio, Venkatesh Ramamurthy,
	'Pavel Machek', adefacc, linux-kernel
  Cc: timw

> On Tue, Jan 09, 2001 at 08:27:49AM -0800, Tim Wright wrote:
> > you are correct in saying that ia32 systems don't have IOMMU hardware,
> but
> > it's unfortunate that we don't support 64-bit PCI bus master cards,
> since
> > they're inexpensive and fairly common now. For instance, the Qlogic ISP
> SCSI
> > cards can do 64-bit addressing, as can many others. Has anybody taken a
> look
> > at enabling this ?
	[Venkatesh Ramamurthy]  Our AMI RAID controller and MegaRAID driver
( part of kernel) supports full blown 64 bit and we have successfully tested
with more than 4 GB RAM under IA32 (uses bounce buffer) and IA64 systems. We
are seeing a dramatic performance drop on IA32 with 8GB ram as it has to do
bounce buffering. I think we need this support to give our dear old linux a
lead compared to other OS'es.


-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@vger.kernel.org
Please read the FAQ at http://www.tux.org/lkml/

^ permalink raw reply	[flat|nested] 17+ messages in thread

end of thread, other threads:[~2001-01-10 13:17 UTC | newest]

Thread overview: 17+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2001-01-04 11:50 Confirmation request about new 2.4.x. kernel limits A.D.F.
2001-01-04 11:23 ` Tigran Aivazian
2001-01-04 11:50 ` Anton Blanchard
2001-01-05 22:46 ` Pavel Machek
2001-01-09 14:03   ` Stephen C. Tweedie
  -- strict thread matches above, loose matches on Subject: below --
2001-01-09  4:11 Venkatesh Ramamurthy
2001-01-09 12:21 ` Matti Aarnio
2001-01-09 16:27   ` Tim Wright
2001-01-09 16:44     ` Andi Kleen
2001-01-09 16:50       ` Tim Wright
2001-01-10 13:16     ` Kurt Garloff
2001-01-09 14:05 ` Stephen C. Tweedie
2001-01-09 15:15 Venkatesh Ramamurthy
2001-01-09 15:51 ` Andi Kleen
2001-01-09 17:35 Venkatesh Ramamurthy
2001-01-09 17:47 ` Andi Kleen
2001-01-09 18:00 Venkatesh Ramamurthy

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox