Re: [PATCH v2] mm: Change return type int to vm_fault_t for fault handlers

From: Souptick Joarder
Date: Mon Jun 04 2018 - 00:37:25 EST


On Sun, Jun 3, 2018 at 3:31 AM, Matthew Wilcox <willy@xxxxxxxxxxxxx> wrote:
> On Sun, Jun 03, 2018 at 01:34:07AM +0530, Souptick Joarder wrote:
>> @@ -3570,9 +3571,8 @@ static int hugetlb_cow(struct mm_struct *mm, struct vm_area_struct *vma,
>> return 0;
>> }
>>
>> - ret = (PTR_ERR(new_page) == -ENOMEM) ?
>> - VM_FAULT_OOM : VM_FAULT_SIGBUS;
>> - goto out_release_old;
>> + ret = vmf_error(PTR_ERR(new_page));
>> + goto out_release_old;
>> }
>>
>> /*
>
> Something weird happened to the goto here

Didn't get it ? Do you refer to wrong indent in goto ?