Add an extra line break between the variable
declaration and the rest of the code
Signed-off-by: Georgiana Rodica Chelu <georgiana.chelu93@gmail.com>
Acked-by: Paul E. McKenney <paulmck@linux.vnet.ibm.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
void cfs_cap_raise(cfs_cap_t cap)
{
struct cred *cred;
+
cred = prepare_creds();
if (cred) {
cap_raise(cred->cap_effective, cap);
void cfs_cap_lower(cfs_cap_t cap)
{
struct cred *cred;
+
cred = prepare_creds();
if (cred) {
cap_lower(cred->cap_effective, cap);