1. 16 12月, 2017 7 次提交
  2. 15 12月, 2017 1 次提交
  3. 14 12月, 2017 25 次提交
  4. 13 12月, 2017 6 次提交
  5. 12 12月, 2017 1 次提交
    • X
      fou: fix some member types in guehdr · 20080971
      Xin Long 提交于
      guehdr struct is used to build or parse gue packets, which
      are always in big endian. It's better to define all guehdr
      members as __beXX types.
      
      Also, in validate_gue_flags it's not good to use a __be32
      variable for both Standard flags(__be16) and Private flags
      (__be32), and pass it to other funcions.
      
      This patch could fix a bunch of sparse warnings from fou.
      
      Fixes: 5024c33a ("gue: Add infrastructure for flags and options")
      Signed-off-by: NXin Long <lucien.xin@gmail.com>
      Signed-off-by: NDavid S. Miller <davem@davemloft.net>
      20080971