1. 25 4月, 2018 6 次提交
  2. 24 4月, 2018 4 次提交
  3. 19 4月, 2018 3 次提交
  4. 13 4月, 2018 5 次提交
  5. 12 4月, 2018 4 次提交
  6. 08 4月, 2018 1 次提交
    • L
      treewide: fix up files incorrectly marked executable · 90fda63f
      Linus Torvalds 提交于
      Joe Perches noted that we have a few source files that for some
      inexplicable reason (read: I'm too lazy to even go look at the history)
      are marked executable:
      
        drivers/gpu/drm/amd/amdgpu/vce_v4_0.c
        drivers/net/ethernet/cadence/macb_ptp.c
      
      A simple git command line to show executable C/asm/header files is this:
      
          git ls-files -s '*.[chsS]' | grep '^100755'
      
      and then you can fix them up with scripting by just feeding that output
      into:
      
          | cut -f2 | xargs chmod -x
      
      and commit it.
      
      Which is exactly what this commit does.
      Reported-by: NJoe Perches <joe@perches.com>
      Signed-off-by: NLinus Torvalds <torvalds@linux-foundation.org>
      90fda63f
  7. 04 4月, 2018 14 次提交
  8. 27 3月, 2018 1 次提交
  9. 26 3月, 2018 1 次提交
  10. 24 3月, 2018 1 次提交