Skip to content
GitLab
Projects Groups Snippets
  • /
  • Help
    • Help
    • Support
    • Community forum
    • Submit feedback
  • Sign in
  • L linux-iv
  • Project information
    • Project information
    • Activity
    • Labels
    • Members
  • Repository
    • Repository
    • Files
    • Commits
    • Branches
    • Tags
    • Contributors
    • Graph
    • Compare
    • Locked Files
  • Issues 0
    • Issues 0
    • List
    • Boards
    • Service Desk
    • Milestones
    • Iterations
    • Requirements
  • Merge requests 0
    • Merge requests 0
  • CI/CD
    • CI/CD
    • Pipelines
    • Jobs
    • Schedules
    • Test Cases
  • Deployments
    • Deployments
    • Environments
    • Releases
  • Packages and registries
    • Packages and registries
    • Container Registry
  • Monitor
    • Monitor
    • Incidents
  • Analytics
    • Analytics
    • Value stream
    • CI/CD
    • Code review
    • Insights
    • Issue
    • Repository
  • Wiki
    • Wiki
  • Snippets
    • Snippets
  • Activity
  • Graph
  • Create a new issue
  • Jobs
  • Commits
  • Issue Boards
Collapse sidebar

This is a reminder that gitlab.arm.com will be offline on Feb 5th.

Maintenance Activity

We will upgrade the gitlab production ( gitlab.arm.com) to version 15.8.0 . This will require Gitlab master and all mirrors to be offline.

When From Feb 5th(2:00AM UK, 9:00AM CHINA) to (11:00AM UK, 6:00PM CHINA).

  • linux-arm
  • linux-iv
  • Repository
Switch branch/tag
  • linux-iv
  • mm
  • kasan
  • kasan.c
Find file BlameHistoryPermalink
  • Wang Long's avatar
    kasan: Fix a type conversion error · e0d57714
    Wang Long authored Nov 05, 2015
    
    
    The current KASAN code can not find the following out-of-bounds bugs:
    
            char *ptr;
            ptr = kmalloc(8, GFP_KERNEL);
            memset(ptr+7, 0, 2);
    
    the cause of the problem is the type conversion error in
    *memory_is_poisoned_n* function.  So this patch fix that.
    
    Signed-off-by: default avatarWang Long <long.wanglong@huawei.com>
    Acked-by: default avatarAndrey Ryabinin <aryabinin@virtuozzo.com>
    Cc: Vladimir Murzin <vladimir.murzin@arm.com>
    Signed-off-by: default avatarAndrew Morton <akpm@linux-foundation.org>
    Signed-off-by: default avatarLinus Torvalds <torvalds@linux-foundation.org>
    e0d57714