Skip to content
Snippets Groups Projects

Compare revisions

Changes are shown as if the source revision was being merged into the target revision. Learn more about comparing revisions.

Source

Select target project
No results found

Target

Select target project
  • rychly/exfat-nofuse
1 result
Show changes
Commits on Source (2)
Loading
Loading
@@ -1363,9 +1363,16 @@ static int exfat_setattr(struct dentry *dentry, struct iattr *attr)
return error;
}
 
#if LINUX_VERSION_CODE >= KERNEL_VERSION(4, 11, 0)
static int exfat_getattr(const struct path *path, struct kstat *stat,
u32 request_mask, unsigned int flags)
{
struct inode *inode = path->dentry->d_inode;
#else
static int exfat_getattr(struct vfsmount *mnt, struct dentry *dentry, struct kstat *stat)
{
struct inode *inode = dentry->d_inode;
#endif
 
DPRINTK("exfat_getattr entered\n");
 
Loading
Loading