From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail-vn0-f49.google.com (mail-vn0-f49.google.com [209.85.216.49]) by kanga.kvack.org (Postfix) with ESMTP id 53C7A6B0032 for ; Tue, 14 Apr 2015 14:36:58 -0400 (EDT) Received: by vnbf1 with SMTP id f1so6744488vnb.5 for ; Tue, 14 Apr 2015 11:36:58 -0700 (PDT) Received: from mail-vn0-x235.google.com (mail-vn0-x235.google.com. [2607:f8b0:400c:c0f::235]) by mx.google.com with ESMTPS id ka8si2135327vdb.72.2015.04.14.11.36.57 for (version=TLSv1.2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Tue, 14 Apr 2015 11:36:57 -0700 (PDT) Received: by vnbf62 with SMTP id f62so6665709vnb.13 for ; Tue, 14 Apr 2015 11:36:57 -0700 (PDT) MIME-Version: 1.0 Date: Tue, 14 Apr 2015 11:36:57 -0700 Message-ID: Subject: advice on bad_page instance From: Luigi Semenzato Content-Type: text/plain; charset=UTF-8 Sender: owner-linux-mm@kvack.org List-ID: To: Linux Memory Management List Cc: Minchan Kim We are seeing several instances of these things (often with different but plausible values in the struct page) in kernel 3.8.11, followed by a panic() in release_pages a few seconds later. I realize it's an old kernel and probably of little interest here, but I would be most grateful for any pointers on how to proceed. In particular, I suspect that many such bugs may have been fixed by now, but I am not sure how to find the right fix (which I would backport). Also, this happens under heavy swap, and we're using zram. I wonder if there may be a race condition related to zram which may have been fixed since then, and which may result in these symptoms. Many thanks for any pointer! Luigi <1>[ 5392.106074] BUG: Bad page state in process CompositorTileW pfn:57a7e <1>[ 5392.106109] page:ffffea00015e9f80 count:0 mapcount:0 mapping: (null) index:0x2 <1>[ 5392.106122] page flags: 0x4000000000000004(referenced) <5>[ 5392.106139] Modules linked in: i2c_dev uinput snd_hda_codec_realtek memconsole snd_hda_codec_hdmi uvcvideo videobuf2_vmalloc videobuf2_memops videobuf2_core videodev snd_hda_intel snd_hda_codec snd_hwdep snd_pcm snd_page_alloc snd_timer zram(C) lzo_compress zsmalloc(C) fuse nf_conntrack_ipv6 nf_defrag_ipv6 ip6table_filter ip6_tables ath9k_btcoex ath9k_common_btcoex ath9k_hw_btcoex ath mac80211 cfg80211 option usb_wwan cdc_ether usbnet ath3k btusb bluetooth joydev ppp_async ppp_generic slhc tun <5>[ 5392.106333] Pid: 27363, comm: CompositorTileW Tainted: G B C 3.8.11 #1 <5>[ 5392.106344] Call Trace: <5>[ 5392.106357] [] bad_page+0xcf/0xe3 <5>[ 5392.106370] [] get_page_from_freelist+0x21a/0x46c <5>[ 5392.106383] [] ? release_pages+0x19b/0x1be <5>[ 5392.106394] [] __alloc_pages_nodemask+0x207/0x685 <5>[ 5392.106407] [] ? _cond_resched+0xe/0x1e <5>[ 5392.106421] [] handle_pte_fault+0x305/0x500 <5>[ 5392.106433] [] ? __vma_link_file+0x65/0x67 <5>[ 5392.106445] [] handle_mm_fault+0x97/0xbb <5>[ 5392.106459] [] __do_page_fault+0x1d4/0x38c <5>[ 5392.106470] [] ? do_mmap_pgoff+0x284/0x2c0 <5>[ 5392.106482] [] ? vm_mmap_pgoff+0x7d/0x8e <5>[ 5392.106495] [] do_page_fault+0xe/0x10 <5>[ 5392.106506] [] page_fault+0x22/0x30 -- To unsubscribe, send a message with 'unsubscribe linux-mm' in the body to majordomo@kvack.org. For more info on Linux MM, see: http://www.linux-mm.org/ . Don't email: email@kvack.org From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail-pa0-f43.google.com (mail-pa0-f43.google.com [209.85.220.43]) by kanga.kvack.org (Postfix) with ESMTP id D65766B0072 for ; Wed, 15 Apr 2015 03:16:50 -0400 (EDT) Received: by pacyx8 with SMTP id yx8so40706113pac.1 for ; Wed, 15 Apr 2015 00:16:50 -0700 (PDT) Received: from mail-pd0-x22e.google.com (mail-pd0-x22e.google.com. [2607:f8b0:400e:c02::22e]) by mx.google.com with ESMTPS id rq7si5549816pab.225.2015.04.15.00.16.49 for (version=TLSv1.2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Wed, 15 Apr 2015 00:16:49 -0700 (PDT) Received: by pdea3 with SMTP id a3so41888842pde.3 for ; Wed, 15 Apr 2015 00:16:49 -0700 (PDT) Date: Wed, 15 Apr 2015 16:16:42 +0900 From: Minchan Kim Subject: Re: advice on bad_page instance Message-ID: <20150415071642.GB22700@blaptop> References: MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: Sender: owner-linux-mm@kvack.org List-ID: To: Luigi Semenzato Cc: Linux Memory Management List Hello Luigi, On Tue, Apr 14, 2015 at 11:36:57AM -0700, Luigi Semenzato wrote: > We are seeing several instances of these things (often with different > but plausible values in the struct page) in kernel 3.8.11, followed by > a panic() in release_pages a few seconds later. > > I realize it's an old kernel and probably of little interest here, but > I would be most grateful for any pointers on how to proceed. In > particular, I suspect that many such bugs may have been fixed by now, > but I am not sure how to find the right fix (which I would backport). > > Also, this happens under heavy swap, and we're using zram. I wonder > if there may be a race condition related to zram which may have been > fixed since then, and which may result in these symptoms. I didn't see such bug until now. Sorry. However, I might miss something because zram has changed a lot since then. What I recommend is just to use recent zram/zsmalloc. I think it's not hard to backport it because they are almost isolated from other parts in kernel. If you don't see any problem any more with recent zram, yay, your system doesn't have any problem. But if you see the problem still, it means you should suspect another stuffs as culprits as well as zram. Thanks. > > Many thanks for any pointer! > > Luigi > > <1>[ 5392.106074] BUG: Bad page state in process CompositorTileW pfn:57a7e > <1>[ 5392.106109] page:ffffea00015e9f80 count:0 mapcount:0 mapping: > (null) index:0x2 > <1>[ 5392.106122] page flags: 0x4000000000000004(referenced) > <5>[ 5392.106139] Modules linked in: i2c_dev uinput > snd_hda_codec_realtek memconsole snd_hda_codec_hdmi uvcvideo > videobuf2_vmalloc videobuf2_memops videobuf2_core videodev > snd_hda_intel snd_hda_codec snd_hwdep snd_pcm snd_page_alloc snd_timer > zram(C) lzo_compress zsmalloc(C) fuse nf_conntrack_ipv6 nf_defrag_ipv6 > ip6table_filter ip6_tables ath9k_btcoex ath9k_common_btcoex > ath9k_hw_btcoex ath mac80211 cfg80211 option usb_wwan cdc_ether usbnet > ath3k btusb bluetooth joydev ppp_async ppp_generic slhc tun > <5>[ 5392.106333] Pid: 27363, comm: CompositorTileW Tainted: G B > C 3.8.11 #1 > <5>[ 5392.106344] Call Trace: > <5>[ 5392.106357] [] bad_page+0xcf/0xe3 > <5>[ 5392.106370] [] get_page_from_freelist+0x21a/0x46c > <5>[ 5392.106383] [] ? release_pages+0x19b/0x1be > <5>[ 5392.106394] [] __alloc_pages_nodemask+0x207/0x685 > <5>[ 5392.106407] [] ? _cond_resched+0xe/0x1e > <5>[ 5392.106421] [] handle_pte_fault+0x305/0x500 > <5>[ 5392.106433] [] ? __vma_link_file+0x65/0x67 > <5>[ 5392.106445] [] handle_mm_fault+0x97/0xbb > <5>[ 5392.106459] [] __do_page_fault+0x1d4/0x38c > <5>[ 5392.106470] [] ? do_mmap_pgoff+0x284/0x2c0 > <5>[ 5392.106482] [] ? vm_mmap_pgoff+0x7d/0x8e > <5>[ 5392.106495] [] do_page_fault+0xe/0x10 > <5>[ 5392.106506] [] page_fault+0x22/0x30 -- Kind regards, Minchan Kim -- To unsubscribe, send a message with 'unsubscribe linux-mm' in the body to majordomo@kvack.org. For more info on Linux MM, see: http://www.linux-mm.org/ . Don't email: email@kvack.org From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail-pd0-f177.google.com (mail-pd0-f177.google.com [209.85.192.177]) by kanga.kvack.org (Postfix) with ESMTP id 7C2166B0038 for ; Wed, 15 Apr 2015 04:05:29 -0400 (EDT) Received: by pdea3 with SMTP id a3so43376476pde.3 for ; Wed, 15 Apr 2015 01:05:29 -0700 (PDT) Received: from mail-pa0-x22e.google.com (mail-pa0-x22e.google.com. [2607:f8b0:400e:c03::22e]) by mx.google.com with ESMTPS id u13si5783557pdl.192.2015.04.15.01.05.28 for (version=TLSv1.2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Wed, 15 Apr 2015 01:05:28 -0700 (PDT) Received: by pabtp1 with SMTP id tp1so42137704pab.2 for ; Wed, 15 Apr 2015 01:05:27 -0700 (PDT) Date: Wed, 15 Apr 2015 17:05:42 +0900 From: Sergey Senozhatsky Subject: Re: advice on bad_page instance Message-ID: <20150415080541.GB464@swordfish> References: <20150415071642.GB22700@blaptop> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20150415071642.GB22700@blaptop> Sender: owner-linux-mm@kvack.org List-ID: To: Luigi Semenzato Cc: Minchan Kim , Linux Memory Management List , sergey.senozhatsky@gmail.com On (04/15/15 16:16), Minchan Kim wrote: > On Tue, Apr 14, 2015 at 11:36:57AM -0700, Luigi Semenzato wrote: > > We are seeing several instances of these things (often with different > > but plausible values in the struct page) in kernel 3.8.11, followed by > > a panic() in release_pages a few seconds later. > > > > I realize it's an old kernel and probably of little interest here, but > > I would be most grateful for any pointers on how to proceed. In > > particular, I suspect that many such bugs may have been fixed by now, > > but I am not sure how to find the right fix (which I would backport). > > > > Also, this happens under heavy swap, and we're using zram. I wonder > > if there may be a race condition related to zram which may have been > > fixed since then, and which may result in these symptoms. > > I didn't see such bug until now. Sorry. However, I might miss something > because zram has changed a lot since then. > What I recommend is just to use recent zram/zsmalloc. > I think it's not hard to backport it because they are almost isolated > from other parts in kernel. Hello, do you see anything suspicious in the logs? like "Buffer I/O error on device zramX, logical block XXXXX", etc. zram has evolved significantly since its staging age. -ss > > <1>[ 5392.106074] BUG: Bad page state in process CompositorTileW pfn:57a7e > > <1>[ 5392.106109] page:ffffea00015e9f80 count:0 mapcount:0 mapping: > > (null) index:0x2 > > <1>[ 5392.106122] page flags: 0x4000000000000004(referenced) > > <5>[ 5392.106139] Modules linked in: i2c_dev uinput > > snd_hda_codec_realtek memconsole snd_hda_codec_hdmi uvcvideo > > videobuf2_vmalloc videobuf2_memops videobuf2_core videodev > > snd_hda_intel snd_hda_codec snd_hwdep snd_pcm snd_page_alloc snd_timer > > zram(C) lzo_compress zsmalloc(C) fuse nf_conntrack_ipv6 nf_defrag_ipv6 > > ip6table_filter ip6_tables ath9k_btcoex ath9k_common_btcoex > > ath9k_hw_btcoex ath mac80211 cfg80211 option usb_wwan cdc_ether usbnet > > ath3k btusb bluetooth joydev ppp_async ppp_generic slhc tun > > <5>[ 5392.106333] Pid: 27363, comm: CompositorTileW Tainted: G B > > C 3.8.11 #1 > > <5>[ 5392.106344] Call Trace: > > <5>[ 5392.106357] [] bad_page+0xcf/0xe3 > > <5>[ 5392.106370] [] get_page_from_freelist+0x21a/0x46c > > <5>[ 5392.106383] [] ? release_pages+0x19b/0x1be > > <5>[ 5392.106394] [] __alloc_pages_nodemask+0x207/0x685 > > <5>[ 5392.106407] [] ? _cond_resched+0xe/0x1e > > <5>[ 5392.106421] [] handle_pte_fault+0x305/0x500 > > <5>[ 5392.106433] [] ? __vma_link_file+0x65/0x67 > > <5>[ 5392.106445] [] handle_mm_fault+0x97/0xbb > > <5>[ 5392.106459] [] __do_page_fault+0x1d4/0x38c > > <5>[ 5392.106470] [] ? do_mmap_pgoff+0x284/0x2c0 > > <5>[ 5392.106482] [] ? vm_mmap_pgoff+0x7d/0x8e > > <5>[ 5392.106495] [] do_page_fault+0xe/0x10 > > <5>[ 5392.106506] [] page_fault+0x22/0x30 -- To unsubscribe, send a message with 'unsubscribe linux-mm' in the body to majordomo@kvack.org. For more info on Linux MM, see: http://www.linux-mm.org/ . Don't email: email@kvack.org From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail-pa0-f53.google.com (mail-pa0-f53.google.com [209.85.220.53]) by kanga.kvack.org (Postfix) with ESMTP id A35FC6B0038 for ; Wed, 15 Apr 2015 04:21:59 -0400 (EDT) Received: by paboj16 with SMTP id oj16so42742574pab.0 for ; Wed, 15 Apr 2015 01:21:59 -0700 (PDT) Received: from mail-pd0-x233.google.com (mail-pd0-x233.google.com. [2607:f8b0:400e:c02::233]) by mx.google.com with ESMTPS id ae4si5890249pbc.57.2015.04.15.01.21.58 for (version=TLSv1.2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Wed, 15 Apr 2015 01:21:58 -0700 (PDT) Received: by pdbnk13 with SMTP id nk13so43951026pdb.0 for ; Wed, 15 Apr 2015 01:21:58 -0700 (PDT) Date: Wed, 15 Apr 2015 17:22:11 +0900 From: Sergey Senozhatsky Subject: Re: advice on bad_page instance Message-ID: <20150415082211.GC464@swordfish> References: <20150415071642.GB22700@blaptop> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20150415071642.GB22700@blaptop> Sender: owner-linux-mm@kvack.org List-ID: To: Luigi Semenzato Cc: Minchan Kim , Linux Memory Management List , sergey.senozhatsky@gmail.com On (04/15/15 16:16), Minchan Kim wrote: > On Tue, Apr 14, 2015 at 11:36:57AM -0700, Luigi Semenzato wrote: > > We are seeing several instances of these things (often with different > > but plausible values in the struct page) in kernel 3.8.11, followed by > > a panic() in release_pages a few seconds later. > > > > I realize it's an old kernel and probably of little interest here, but > > I would be most grateful for any pointers on how to proceed. In > > particular, I suspect that many such bugs may have been fixed by now, > > but I am not sure how to find the right fix (which I would backport). > > > > Also, this happens under heavy swap, and we're using zram. I wonder > > if there may be a race condition related to zram which may have been > > fixed since then, and which may result in these symptoms. > > I didn't see such bug until now. Sorry. However, I might miss something > because zram has changed a lot since then. > What I recommend is just to use recent zram/zsmalloc. > I think it's not hard to backport it because they are almost isolated > from other parts in kernel. > If you don't see any problem any more with recent zram, yay, your > system doesn't have any problem. But if you see the problem still, > it means you should suspect another stuffs as culprits as well as > zram. > > Thanks. > assuming that you use zram0, does 'mkswap -c /dev/zram0' show any bad pages right after the swap creation/activation? -ss > > <1>[ 5392.106074] BUG: Bad page state in process CompositorTileW pfn:57a7e > > <1>[ 5392.106109] page:ffffea00015e9f80 count:0 mapcount:0 mapping: > > (null) index:0x2 > > <1>[ 5392.106122] page flags: 0x4000000000000004(referenced) > > <5>[ 5392.106139] Modules linked in: i2c_dev uinput > > snd_hda_codec_realtek memconsole snd_hda_codec_hdmi uvcvideo > > videobuf2_vmalloc videobuf2_memops videobuf2_core videodev > > snd_hda_intel snd_hda_codec snd_hwdep snd_pcm snd_page_alloc snd_timer > > zram(C) lzo_compress zsmalloc(C) fuse nf_conntrack_ipv6 nf_defrag_ipv6 > > ip6table_filter ip6_tables ath9k_btcoex ath9k_common_btcoex > > ath9k_hw_btcoex ath mac80211 cfg80211 option usb_wwan cdc_ether usbnet > > ath3k btusb bluetooth joydev ppp_async ppp_generic slhc tun > > <5>[ 5392.106333] Pid: 27363, comm: CompositorTileW Tainted: G B > > C 3.8.11 #1 > > <5>[ 5392.106344] Call Trace: > > <5>[ 5392.106357] [] bad_page+0xcf/0xe3 > > <5>[ 5392.106370] [] get_page_from_freelist+0x21a/0x46c > > <5>[ 5392.106383] [] ? release_pages+0x19b/0x1be > > <5>[ 5392.106394] [] __alloc_pages_nodemask+0x207/0x685 > > <5>[ 5392.106407] [] ? _cond_resched+0xe/0x1e > > <5>[ 5392.106421] [] handle_pte_fault+0x305/0x500 > > <5>[ 5392.106433] [] ? __vma_link_file+0x65/0x67 > > <5>[ 5392.106445] [] handle_mm_fault+0x97/0xbb > > <5>[ 5392.106459] [] __do_page_fault+0x1d4/0x38c > > <5>[ 5392.106470] [] ? do_mmap_pgoff+0x284/0x2c0 > > <5>[ 5392.106482] [] ? vm_mmap_pgoff+0x7d/0x8e > > <5>[ 5392.106495] [] do_page_fault+0xe/0x10 > > <5>[ 5392.106506] [] page_fault+0x22/0x30 -- To unsubscribe, send a message with 'unsubscribe linux-mm' in the body to majordomo@kvack.org. For more info on Linux MM, see: http://www.linux-mm.org/ . Don't email: email@kvack.org From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail-vn0-f45.google.com (mail-vn0-f45.google.com [209.85.216.45]) by kanga.kvack.org (Postfix) with ESMTP id 6A1BA6B006E for ; Wed, 15 Apr 2015 11:43:55 -0400 (EDT) Received: by vnbg62 with SMTP id g62so16488814vnb.6 for ; Wed, 15 Apr 2015 08:43:55 -0700 (PDT) Received: from mail-vn0-x230.google.com (mail-vn0-x230.google.com. [2607:f8b0:400c:c0f::230]) by mx.google.com with ESMTPS id 8si5662221vdz.65.2015.04.15.08.43.54 for (version=TLSv1.2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Wed, 15 Apr 2015 08:43:54 -0700 (PDT) Received: by vnbf190 with SMTP id f190so16608473vnb.1 for ; Wed, 15 Apr 2015 08:43:54 -0700 (PDT) MIME-Version: 1.0 In-Reply-To: <20150415082211.GC464@swordfish> References: <20150415071642.GB22700@blaptop> <20150415082211.GC464@swordfish> Date: Wed, 15 Apr 2015 08:43:54 -0700 Message-ID: Subject: Re: advice on bad_page instance From: Luigi Semenzato Content-Type: text/plain; charset=UTF-8 Sender: owner-linux-mm@kvack.org List-ID: To: Sergey Senozhatsky Cc: Minchan Kim , Linux Memory Management List , sergey.senozhatsky@gmail.com Thank you for your replies! Actually I don't see anything that makes me suspect zram as the culprit. I mentioned it just in case you folks knew of any bug that would result in that behavior. Thank you for the suggestion to backport---I'll look into it. Of course I would prefer to backport code that I actually know fixes this mm problem. On Wed, Apr 15, 2015 at 1:22 AM, Sergey Senozhatsky wrote: > On (04/15/15 16:16), Minchan Kim wrote: >> On Tue, Apr 14, 2015 at 11:36:57AM -0700, Luigi Semenzato wrote: >> > We are seeing several instances of these things (often with different >> > but plausible values in the struct page) in kernel 3.8.11, followed by >> > a panic() in release_pages a few seconds later. >> > >> > I realize it's an old kernel and probably of little interest here, but >> > I would be most grateful for any pointers on how to proceed. In >> > particular, I suspect that many such bugs may have been fixed by now, >> > but I am not sure how to find the right fix (which I would backport). >> > >> > Also, this happens under heavy swap, and we're using zram. I wonder >> > if there may be a race condition related to zram which may have been >> > fixed since then, and which may result in these symptoms. >> >> I didn't see such bug until now. Sorry. However, I might miss something >> because zram has changed a lot since then. >> What I recommend is just to use recent zram/zsmalloc. >> I think it's not hard to backport it because they are almost isolated >> from other parts in kernel. >> If you don't see any problem any more with recent zram, yay, your >> system doesn't have any problem. But if you see the problem still, >> it means you should suspect another stuffs as culprits as well as >> zram. >> >> Thanks. >> > > assuming that you use zram0, does 'mkswap -c /dev/zram0' show any bad > pages right after the swap creation/activation? > > -ss > >> > <1>[ 5392.106074] BUG: Bad page state in process CompositorTileW pfn:57a7e >> > <1>[ 5392.106109] page:ffffea00015e9f80 count:0 mapcount:0 mapping: >> > (null) index:0x2 >> > <1>[ 5392.106122] page flags: 0x4000000000000004(referenced) >> > <5>[ 5392.106139] Modules linked in: i2c_dev uinput >> > snd_hda_codec_realtek memconsole snd_hda_codec_hdmi uvcvideo >> > videobuf2_vmalloc videobuf2_memops videobuf2_core videodev >> > snd_hda_intel snd_hda_codec snd_hwdep snd_pcm snd_page_alloc snd_timer >> > zram(C) lzo_compress zsmalloc(C) fuse nf_conntrack_ipv6 nf_defrag_ipv6 >> > ip6table_filter ip6_tables ath9k_btcoex ath9k_common_btcoex >> > ath9k_hw_btcoex ath mac80211 cfg80211 option usb_wwan cdc_ether usbnet >> > ath3k btusb bluetooth joydev ppp_async ppp_generic slhc tun >> > <5>[ 5392.106333] Pid: 27363, comm: CompositorTileW Tainted: G B >> > C 3.8.11 #1 >> > <5>[ 5392.106344] Call Trace: >> > <5>[ 5392.106357] [] bad_page+0xcf/0xe3 >> > <5>[ 5392.106370] [] get_page_from_freelist+0x21a/0x46c >> > <5>[ 5392.106383] [] ? release_pages+0x19b/0x1be >> > <5>[ 5392.106394] [] __alloc_pages_nodemask+0x207/0x685 >> > <5>[ 5392.106407] [] ? _cond_resched+0xe/0x1e >> > <5>[ 5392.106421] [] handle_pte_fault+0x305/0x500 >> > <5>[ 5392.106433] [] ? __vma_link_file+0x65/0x67 >> > <5>[ 5392.106445] [] handle_mm_fault+0x97/0xbb >> > <5>[ 5392.106459] [] __do_page_fault+0x1d4/0x38c >> > <5>[ 5392.106470] [] ? do_mmap_pgoff+0x284/0x2c0 >> > <5>[ 5392.106482] [] ? vm_mmap_pgoff+0x7d/0x8e >> > <5>[ 5392.106495] [] do_page_fault+0xe/0x10 >> > <5>[ 5392.106506] [] page_fault+0x22/0x30 -- To unsubscribe, send a message with 'unsubscribe linux-mm' in the body to majordomo@kvack.org. For more info on Linux MM, see: http://www.linux-mm.org/ . Don't email: email@kvack.org