I just hit a strange bug on 3.7.0 (plus this buggy patch: https://lkml.org/lkml/2012/12/14/14, but I don't think the patch is relevant). With a bunch of MAP_HUGETLB-using programs running, one of them got repeatedly killed by sigbus (BUS_ADRERR) on its first attempt to write to the last huge page in an 18MiB allocation. Here are some observations: 1. hugetlb_shm_group is zero and the process is not in that group. I'm not sure why the allocation worked at all, but it did and does. (This is the case even on Linux 3.5.) 2. The problem happened with RLIMIT_MEMLOCK very low and very high. (I tried both.) 3. The other processes using hugepages had mlockall(MCL_CURRENT | MCL_FUTURE). This one did not. 4. dmesg says nothing at all. 5. I couldn't reproduce it with a small test case. I tried a few things. 6. thp is set to madvise, and nothing is using it. 7. I have 1000 hugepages reserved and <400 were in use. nr_overcommit_hugepages is zero. 8. I changed the crashing program to memset its hugepage allocation to zero immediately after allocating it. That fixed the problem. I undid that and the problem did *not* come back. I can't reproduce it any more. I thought that getting killed due to a failed hugepage fault with nr_overcommit_hugepages=0 was impossible. Any clue? I'll keep trying to reproduce it, but I don't know if I'll succeed. --Andy P.S. Sorry, linux-mm people, for repeatedly reporting bugs that I can't trigger the next day. It's not intentional, I promise. -- To unsubscribe, send a message with 'unsubscribe linux-mm' in the body to majordomo@xxxxxxxxx. For more info on Linux MM, see: http://www.linux-mm.org/ . Don't email: <a href=mailto:"dont@xxxxxxxxx"> email@xxxxxxxxx </a>