1. 30 5月, 2023 1 次提交
  2. 17 5月, 2023 1 次提交
  3. 16 5月, 2023 2 次提交
  4. 12 5月, 2023 1 次提交
  5. 08 4月, 2023 1 次提交
  6. 07 4月, 2023 1 次提交
  7. 01 3月, 2023 1 次提交
  8. 14 2月, 2023 1 次提交
  9. 10 2月, 2023 1 次提交
  10. 08 12月, 2022 3 次提交
    • G
      config: disable CONFIG_QOS_SCHED_SMT_EXPELLER · f00733bb
      Guan Jing 提交于
      hulk inclusion
      category: bugfix
      bugzilla: https://gitee.com/openeuler/kernel/issues/I64MOK
      CVE: NA
      
      --------------------------------
      
      There is priority inversion problem, so we disable
      CONFIG_QOS_SMT_EXPELLER temporary until we fix it.
      Signed-off-by: NGuan Jing <guanjing6@huawei.com>
      f00733bb
    • A
      Enable Intel In Field Scan(IFS) as kernel module · 53c13478
      Aichun Shi 提交于
      Intel inclusion
      category: feature
      feature: Intel In Filed Scan(IFS)
      bugzilla: https://gitee.com/openeuler/intel-kernel/issues/I651S7
      CVE: N/A
      
      Intel-SIG: openeuler_defconfig: Enable Intel In Field Scan(IFS) as kernel module
      
      --------------------------------------------
      
      Enable Intel In Field Scan(IFS) as kernel module in openeuler_defconfig.
      Signed-off-by: NAichun Shi <aichun.shi@intel.com>
      53c13478
    • D
      openeuler: net: txgbe: Fix some known bugs, merge net-swift txgbe-1.2.3 out-of-tree · 3ddd74dc
      DuanqiangWen 提交于
      driver inclusion
      category: feature
      bugzilla: https://gitee.com/openeuler/kernel/issues/I5Y6RT
      CVE: NA
      
      Bugfix:
      1.add cl72_prbs control
      2.fix bug of backplane down restart an73
      3.fix speed change bug of marvell xaui phy
      when executing "ethtool -s ethName"
      4.fix bug of mac related register configurations in kx4/kx mode
      5.adjust input parameters in configure file
      6.fix bug of "ethtool -p" function with ocp card
      7.fix QinQ TCP/UDP packet traffic bug
      8.fix bug of autonegoation between KR board and botong switch chip
      9.add support for "ethtool -N xxx ... action"
      10.fix bug when in kr mode, core dumping will
      occasionally happen while os is booting up
      11.add support for "ethtool -f xxx" to burn firmware
      12.fix flow director udp port match function bug
      13.fix bug of "ethtool -f"
      14.fix bug of the case that link down event in kr mode
      may occasionally cause kernel call trace in kr mode
      15.change flow director default mode from perfect mode
      to signature mode so that queue vectors
      can be bound to cpus automatically
      16.add FEC support in kr mode
      17.add support for led and polarity configuration in firmware.
      18.add NETDEV_F_HW_CSUM feature support
      19.turn on/off led light when execute "ifconfig up/down"
      20.fix bug of geneve dst port error setting
      when enable geneve hw offload
      21.fix bug of advertise speed error showing by "ethtool -s"
      22.fix bug of vxlan/geneve hw offload feature.
      23.Add support for vxlan/geneve port number
      setting in hardware register.
      24.add support for oem ssid and svid.
      25.add inspur oem ssid 0x0075 support for "ethtool -p".
      26.add flash unlock when upgrading image
      
      Net-Swift Official Website:
      https://www.net-swift.comSigned-off-by: NDuanqiangWen <duanqiangwen@net-swift.com>
      3ddd74dc
  11. 06 12月, 2022 2 次提交
  12. 05 12月, 2022 1 次提交
  13. 29 11月, 2022 2 次提交
  14. 24 11月, 2022 1 次提交
  15. 23 11月, 2022 1 次提交
    • L
      cgroup: support cgroup writeback on cgroupv1 · 644547a9
      Lu Jialin 提交于
      hulkl inclusion
      category: feature
      bugzilla: https://gitee.com/openeuler/kernel/issues/I5ZG61
      
      -------------------------------
      
      In cgroupv1, cgroup writeback is not supproted for two problems:
      1) Blkcg_css and memcg_css are mounted on different cgroup trees.
         Therefore, blkcg_css cannot be found according to a certain memcg_css.
      2) Buffer I/O is worked by kthread, which is in the root_blkcg.
         Therefore, blkcg cannot limit wbps and wiops of buffer I/O.
      
      We solve the two problems to support cgroup writeback on cgroupv1.
      1) A memcg is attached to the blkcg_root css when the memcg was created.
      2) We add a member "wb_blkio_ino" in mem_cgroup_legacy_files.
         User can attach a memcg to a cerntain blkcg through echo the file
         inode of the blkcg into the wb_blkio of the memcg.
      3) inode_cgwb_enabled() return true when memcg and io are both mounted
         on cgroupv2 or both on cgroupv1.
      4) Buffer I/O can find a blkcg according to its memcg.
      
      Thus, a memcg can find a certain blkcg, and cgroup writeback can be
      supported on cgroupv1.
      Signed-off-by: NLu Jialin <lujialin4@huawei.com>
      644547a9
  16. 18 11月, 2022 6 次提交
  17. 15 11月, 2022 1 次提交
  18. 11 11月, 2022 1 次提交
    • L
      crypto: enable some SM configs · a20bead4
      luhuaxin 提交于
      openeuler inclusion
      category: feature
      bugzilla: https://gitee.com/openeuler/kernel/issues/I6202L
      CVE: NA
      
      1. set CONFIG_CRYPTO_SM2/3 to y:
      The module signature based on SM2 cert has been supported now.
      So the SM2/3 should be enabled by default to support SM2 cert
      in kernel boot process.
      
      2. set CONFIG_CRYPTO_SM3_GENERIC to y:
      sm3-generic is architecture independent and should be build
      in case other modules fail.
      
      3. set CONFIG_CRYPTO_SM4_GENERIC to m:
      sm4-generic is architecture independent and should be build
      in case other modules fail.
      
      4. enable algorithm implementations related to architecture:
      Enable SM4-CE, SM4-NEON, SM3-AVX to imporve algorithm
      performance.
      Signed-off-by: Nluhuaxin <luhuaxin1@huawei.com>
      a20bead4
  19. 07 11月, 2022 1 次提交
  20. 04 11月, 2022 2 次提交
  21. 19 10月, 2022 1 次提交
  22. 20 9月, 2022 1 次提交
  23. 01 8月, 2022 1 次提交
  24. 28 7月, 2022 1 次提交
  25. 19 7月, 2022 1 次提交
  26. 31 5月, 2022 1 次提交
  27. 10 5月, 2022 1 次提交
  28. 07 4月, 2022 1 次提交
  29. 27 3月, 2022 1 次提交