|
@@ -52,6 +52,19 @@
|
|
#define VM_FAULT_BADMAP 0x020000
|
|
#define VM_FAULT_BADMAP 0x020000
|
|
#define VM_FAULT_BADACCESS 0x040000
|
|
#define VM_FAULT_BADACCESS 0x040000
|
|
|
|
|
|
|
|
+static unsigned long store_indication;
|
|
|
|
+
|
|
|
|
+void fault_init(void)
|
|
|
|
+{
|
|
|
|
+ unsigned long long facility_list[2];
|
|
|
|
+
|
|
|
|
+ if (stfle(facility_list, 2) < 2)
|
|
|
|
+ return;
|
|
|
|
+ if ((facility_list[0] & (1ULL << 61)) &&
|
|
|
|
+ (facility_list[1] & (1ULL << 52)))
|
|
|
|
+ store_indication = 0xc00;
|
|
|
|
+}
|
|
|
|
+
|
|
static inline int notify_page_fault(struct pt_regs *regs)
|
|
static inline int notify_page_fault(struct pt_regs *regs)
|
|
{
|
|
{
|
|
int ret = 0;
|
|
int ret = 0;
|
|
@@ -294,7 +307,7 @@ static inline int do_exception(struct pt_regs *regs, int access,
|
|
struct mm_struct *mm;
|
|
struct mm_struct *mm;
|
|
struct vm_area_struct *vma;
|
|
struct vm_area_struct *vma;
|
|
unsigned long address;
|
|
unsigned long address;
|
|
- int fault;
|
|
|
|
|
|
+ int fault, write;
|
|
|
|
|
|
if (notify_page_fault(regs))
|
|
if (notify_page_fault(regs))
|
|
return 0;
|
|
return 0;
|
|
@@ -348,8 +361,10 @@ static inline int do_exception(struct pt_regs *regs, int access,
|
|
* make sure we exit gracefully rather than endlessly redo
|
|
* make sure we exit gracefully rather than endlessly redo
|
|
* the fault.
|
|
* the fault.
|
|
*/
|
|
*/
|
|
- fault = handle_mm_fault(mm, vma, address,
|
|
|
|
- (access == VM_WRITE) ? FAULT_FLAG_WRITE : 0);
|
|
|
|
|
|
+ write = (access == VM_WRITE ||
|
|
|
|
+ (trans_exc_code & store_indication) == 0x400) ?
|
|
|
|
+ FAULT_FLAG_WRITE : 0;
|
|
|
|
+ fault = handle_mm_fault(mm, vma, address, write);
|
|
if (unlikely(fault & VM_FAULT_ERROR))
|
|
if (unlikely(fault & VM_FAULT_ERROR))
|
|
goto out_up;
|
|
goto out_up;
|
|
|
|
|