Skip to content

Commit

Permalink
Merge pull request #105 from philipl/master
Browse files Browse the repository at this point in the history
exfat_super: Update for kernel 4.10 compatibility
  • Loading branch information
dorimanx committed Feb 20, 2017
2 parents 8d291f5 + a15579e commit 97f9e2d
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion exfat_super.c
Expand Up @@ -1419,7 +1419,9 @@ static void *exfat_follow_link(struct dentry *dentry, struct nameidata *nd)
#endif

const struct inode_operations exfat_symlink_inode_operations = {
.readlink = generic_readlink,
#if LINUX_VERSION_CODE < KERNEL_VERSION(4,10,0)
.readlink = generic_readlink,
#endif
#if LINUX_VERSION_CODE < KERNEL_VERSION(4,5,0)
.follow_link = exfat_follow_link,
#endif
Expand Down

3 comments on commit 97f9e2d

@Shoaib0597
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Hi @dorimanx,

How do I give authorship to your commits which I use? I don't know your Email ID. I really want to keep proper authorships of every commit in my kernel source. So, please, help me in this. :)

@dorimanx
Copy link
Owner Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

There is no need for that. Its open source, most of the work done by other fellow developers, there authorship is preserved. I dont sign every commit i merge, its wrong. I see kernels with tons of commits signed by kernel dev that didnt do anything for those changes.

@Shoaib0597
Copy link

@Shoaib0597 Shoaib0597 commented on 97f9e2d Apr 7, 2017

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Still, if I did "manually" cherry-pick something from your source and then commit it, then I become the owner of that commit and that is way more wrong.
For ex, see the below commit in my kernel---
Shoaib0597/Velocity_MSM8916@e8022c6

So, isn't there any way I could add you as the author?

By the way, my internet speed is very poor. It will take much time if I fetch your repo and then cherry-pick (which retains the authorship automatically).

Please sign in to comment.