Re: [PATCH 2.6.21] cramfs: add cramfs Linear XIP

2007-06-06 Thread Justin Treon
vm_flags were already in hex, i.e. 0x1875 The settings were: VM_READ VM_EXEC VM_MAYREAD VM_MAYWRITE VM_MAYEXEC VM_DENYWRITE VM_EXECUTABLE A possible problem source is that VM_PFNMAP is not set. Thus when vm_normal_page is called there is

Re: [PATCH 2.6.21] cramfs: add cramfs Linear XIP

2007-06-06 Thread Justin Treon
: VM_READ VM_EXEC VM_MAYREAD VM_MAYWRITE VM_MAYEXEC VM_DENYWRITE VM_EXECUTABLE A possible problem source is that VM_PFNMAP is not set. Thus when vm_normal_page is called there is no associated struct page. Justin Treon