Lines Matching refs:res
34 int res; in ext4_encrypted_follow_link() local
37 res = ext4_get_encryption_info(inode); in ext4_encrypted_follow_link()
38 if (res) in ext4_encrypted_follow_link()
39 return ERR_PTR(res); in ext4_encrypted_follow_link()
60 res = -EFSCORRUPTED; in ext4_encrypted_follow_link()
67 res = -ENOMEM; in ext4_encrypted_follow_link()
72 res = _ext4_fname_disk_to_usr(inode, NULL, &cstr, &pstr); in ext4_encrypted_follow_link()
73 if (res < 0) in ext4_encrypted_follow_link()
76 if (res <= plen) in ext4_encrypted_follow_link()
77 paddr[res] = '\0'; in ext4_encrypted_follow_link()
89 return ERR_PTR(res); in ext4_encrypted_follow_link()