LCOV - code coverage report
Current view: top level - arch/arm/mm - extable.c (source / functions) Hit Total Coverage
Test: gcov_data_raspi2_real_modules_combined.info Lines: 5 5 100.0 %
Date: 2020-09-30 20:25:40 Functions: 1 1 100.0 %
Branches: 1 2 50.0 %

           Branch data     Line data    Source code
       1                 :            : // SPDX-License-Identifier: GPL-2.0
       2                 :            : /*
       3                 :            :  *  linux/arch/arm/mm/extable.c
       4                 :            :  */
       5                 :            : #include <linux/extable.h>
       6                 :            : #include <linux/uaccess.h>
       7                 :            : 
       8                 :       1451 : int fixup_exception(struct pt_regs *regs)
       9                 :            : {
      10                 :            :         const struct exception_table_entry *fixup;
      11                 :            : 
      12                 :       1451 :         fixup = search_exception_tables(instruction_pointer(regs));
      13         [ +  - ]:       1451 :         if (fixup) {
      14                 :       1451 :                 regs->ARM_pc = fixup->fixup;
      15                 :            : #ifdef CONFIG_THUMB2_KERNEL
      16                 :            :                 /* Clear the IT state to avoid nasty surprises in the fixup */
      17                 :            :                 regs->ARM_cpsr &= ~PSR_IT_MASK;
      18                 :            : #endif
      19                 :            :         }
      20                 :            : 
      21                 :       1451 :         return fixup != NULL;
      22                 :            : }

Generated by: LCOV version 1.14