Tag: 33799a6d1aeb892862d5f69ee87195becabf8d0c

MIPS: Modify error handling

Author: Amitoj Kaur Chawla <amitoj1606@gmail.com> debugfs_create_file returns NULL on error so an IS_ERR test is incorrect here and a NULL check is required. The Coccinelle semantic patch used to make this change is as follows: @@ expression e; @@ e = debugfs_create_file(…); if( – IS_ERR(e) + !e ) { } Signed-off-by: Amitoj Kaur Chawla Cc: …

Continue reading

BtrLinux
Privacy Overview

This website uses cookies so that we can provide you with the best user experience possible. Cookie information is stored in your browser and performs functions such as recognising you when you return to our website and helping our team to understand which sections of the website you find most interesting and useful.