1. 28 Sep, 2021 1 commit
  2. 27 Sep, 2021 8 commits
  3. 24 Sep, 2021 2 commits
  4. 23 Sep, 2021 9 commits
  5. 22 Sep, 2021 6 commits
  6. 21 Sep, 2021 9 commits
  7. 20 Sep, 2021 5 commits
    • Mianhan Liu's avatar
      net/ipv4/tcp_minisocks.c: remove superfluous header files from tcp_minisocks.c · 85c69886
      Mianhan Liu authored
      tcp_minisocks.c hasn't use any macro or function declared in mm.h, module.h,
      slab.h, sysctl.h, workqueue.h, static_key.h and inet_common.h. Thus, these
      files can be removed from tcp_minisocks.c safely without affecting the
      compilation of the net module.
      Signed-off-by: default avatarMianhan Liu <liumh1@shanghaitech.edu.cn>
      Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
      85c69886
    • Mianhan Liu's avatar
      net/ipv4/tcp_fastopen.c: remove superfluous header files from tcp_fastopen.c · 222a3140
      Mianhan Liu authored
      tcp_fastopen.c hasn't use any macro or function declared in crypto.h, err.h,
      init.h, list.h, rculist.h and inetpeer.h. Thus, these files can be removed
      from tcp_fastopen.c safely without affecting the compilation of the net module.
      Signed-off-by: default avatarMianhan Liu <liumh1@shanghaitech.edu.cn>
      Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
      222a3140
    • Mianhan Liu's avatar
      net/ipv4/route.c: remove superfluous header files from route.c · ffa66f15
      Mianhan Liu authored
      route.c hasn't use any macro or function declared in uaccess.h, types.h,
      string.h, sockios.h, times.h, protocol.h, arp.h and l3mdev.h. Thus, these
      files can be removed from route.c safely without affecting the compilation
      of the net module.
      Signed-off-by: default avatarMianhan Liu <liumh1@shanghaitech.edu.cn>
      Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
      ffa66f15
    • Aleksander Jan Bajkowski's avatar
      net: lantiq: add support for jumbo frames · 998ac358
      Aleksander Jan Bajkowski authored
      Add support for jumbo frames. Full support for jumbo frames requires
      changes in the DSA switch driver (lantiq_gswip.c).
      
      Tested on BT Hone Hub 5A.
      Signed-off-by: default avatarAleksander Jan Bajkowski <olek2@wp.pl>
      Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
      998ac358
    • David S. Miller's avatar
      Merge branch 'wwan-iosm-fw-flashing' · 13f356f5
      David S. Miller authored
      M Chetan Kumar says:
      
      ====================
      net: wwan: iosm: fw flashing & cd collection
      
      This patch series brings-in support for M.2 7560 Device firmware flashing &
      coredump collection using devlink.
      - Driver Registers with Devlink framework.
      - Register devlink params callback for configuring device params
        required in flashing or coredump flow.
      - Implements devlink ops flash_update callback that programs modem
        firmware.
      - Creates region & snapshot required for device coredump log collection.
      
      On early detection of device in boot rom stage. Driver registers with
      Devlink framework and establish transport channel for PSI (Primary Signed
      Image) injection. Once PSI is injected to device, the device execution
      stage details are read to determine whether device is in flash or
      exception mode. The collected information is reported to devlink user
      space application & based on this informationi, application proceeds with
      either modem firmware flashing or coredump collection.
      
      Refer to iosm devlink documentation for details on Devlink Params, flash
      update and coredump collection command usage.
      
      Note: Patches are interdependent. Need to apply complete patch series for
      compilation.
      
      Changes since v1:
        * Break down single patch into multiple patches.
        * IOSM Driver devlink documentation.
        * Fixes NULL parameter deference in ipc_devlink_flash_update() reported
          by smatch static checker.
        * Fixes memory leak in ipc_devlink_create_region().
        * Use kmemdup instead of kzalloc and memcpy in ipc_flash_boot_psi().
        * Fixes linux-net build error.
      ====================
      Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
      13f356f5