https://github.com/torvalds/linux
Revision f5fb09fa3392ad43fbcfc2f4580752f383ab5996 authored by Andries Brouwer on 27 August 2006, 08:23:42 UTC, committed by Linus Torvalds on 27 August 2006, 18:01:30 UTC
Mounting a (corrupt) minix filesystem with zero s_zmap_blocks
gives a spectacular crash on my 2.6.17.8 system, no doubt
because minix/inode.c does an unconditional
	minix_set_bit(0,sbi->s_zmap[0]->b_data);

[akpm@osdl.org: make labels conistent while we're there]

Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
1 parent fb8d81e
Raw File
Tip revision: f5fb09fa3392ad43fbcfc2f4580752f383ab5996 authored by Andries Brouwer on 27 August 2006, 08:23:42 UTC
[PATCH] Fix for minix crash
Tip revision: f5fb09f
numastat.txt

Numa policy hit/miss statistics

/sys/devices/system/node/node*/numastat

All units are pages. Hugepages have separate counters.

numa_hit			A process wanted to allocate memory from this node,
					and succeeded.
numa_miss			A process wanted to allocate memory from this node,
					but ended up with memory from another.
numa_foreign		A process wanted to allocate on another node,
				    but ended up with memory from this one.
local_node			A process ran on this node and got memory from it.
other_node			A process ran on this node and got memory from another node.
interleave_hit 		Interleaving wanted to allocate from this node
					and succeeded.

For easier reading you can use the numastat utility from the numactl package
(ftp://ftp.suse.com/pub/people/ak/numa/numactl*). Note that it only works
well right now on machines with a small number of CPUs.

back to top