Message ID | 1346053012-25686-1-git-send-email-dirk.behme@de.bosch.com (mailing list archive) |
---|---|
State | New, archived |
Headers | show |
On Mon, Aug 27, 2012 at 09:36:50AM +0200, Dirk Behme wrote: > Both issues are gone applying these two patches. > > Note: If these patches are fine, they should go to stable, too. > Then you should have Cc: <stable@vger.kernel.org> tag on these patches.
On Tue, Aug 28, 2012 at 06:31:35AM +0800, Shawn Guo wrote: > On Mon, Aug 27, 2012 at 09:36:50AM +0200, Dirk Behme wrote: > > Both issues are gone applying these two patches. > > > > Note: If these patches are fine, they should go to stable, too. > > > Then you should have Cc: <stable@vger.kernel.org> tag on these patches. On both of them? I can do that if needed. How far back should they go? greg k-h
On Mon, Aug 27, 2012 at 03:51:42PM -0700, Greg Kroah-Hartman wrote: > On both of them? I can do that if needed. How far back should they go? > It should be okay to apply on 3.4 and 3.5. But patch #2 is still in question. I do not like the #ifdef.
On 28.08.2012 01:37, Shawn Guo wrote: > On Mon, Aug 27, 2012 at 03:51:42PM -0700, Greg Kroah-Hartman wrote: >> On both of them? I can do that if needed. How far back should they go? >> > It should be okay to apply on 3.4 and 3.5. For patch #1/2: Yes, thanks! > But patch #2 is still in > question. I do not like the #ifdef. For patch #2/2: Yes, understood. I'll look at Troy's proposal and will update #2/2. Many thanks and best regards Dirk
Index: a/mm/mmap.c =================================================================== --- a/mm/mmap.c +++ b/mm/mmap.c @@ -1290,6 +1290,9 @@ munmap_back: vma->vm_pgoff = pgoff; INIT_LIST_HEAD(&vma->anon_vma_chain); + printk(" => mmap_region: start: 0x%08X end: 0x%08X len: %d\n", + (unsigned int)vma->vm_start, (unsigned int)vma->vm_end, (int)len); + error = -EINVAL; /* when rejecting VM_GROWSDOWN|VM_GROWSUP */ if (file) {