Skip to content
Snippets Groups Projects
  1. Aug 08, 2024
  2. Aug 07, 2024
    • Yuntian Zhang's avatar
      net: usb: qmi_wwan: add MeiG Smart SRM825L · 1ca645a2
      Yuntian Zhang authored
      
      Add support for MeiG Smart SRM825L which is based on Qualcomm 315 chip.
      
      T:  Bus=04 Lev=01 Prnt=01 Port=00 Cnt=01 Dev#=  2 Spd=5000 MxCh= 0
      D:  Ver= 3.20 Cls=00(>ifc ) Sub=00 Prot=00 MxPS= 9 #Cfgs=  1
      P:  Vendor=2dee ProdID=4d22 Rev= 4.14
      S:  Manufacturer=MEIG
      S:  Product=LTE-A Module
      S:  SerialNumber=6f345e48
      C:* #Ifs= 6 Cfg#= 1 Atr=80 MxPwr=896mA
      I:* If#= 0 Alt= 0 #EPs= 2 Cls=ff(vend.) Sub=ff Prot=30 Driver=option
      E:  Ad=81(I) Atr=02(Bulk) MxPS=1024 Ivl=0ms
      E:  Ad=01(O) Atr=02(Bulk) MxPS=1024 Ivl=0ms
      I:* If#= 1 Alt= 0 #EPs= 3 Cls=ff(vend.) Sub=ff Prot=40 Driver=option
      E:  Ad=83(I) Atr=03(Int.) MxPS=  10 Ivl=32ms
      E:  Ad=82(I) Atr=02(Bulk) MxPS=1024 Ivl=0ms
      E:  Ad=02(O) Atr=02(Bulk) MxPS=1024 Ivl=0ms
      I:* If#= 2 Alt= 0 #EPs= 3 Cls=ff(vend.) Sub=ff Prot=40 Driver=option
      E:  Ad=85(I) Atr=03(Int.) MxPS=  10 Ivl=32ms
      E:  Ad=84(I) Atr=02(Bulk) MxPS=1024 Ivl=0ms
      E:  Ad=03(O) Atr=02(Bulk) MxPS=1024 Ivl=0ms
      I:* If#= 3 Alt= 0 #EPs= 3 Cls=ff(vend.) Sub=ff Prot=60 Driver=option
      E:  Ad=87(I) Atr=03(Int.) MxPS=  10 Ivl=32ms
      E:  Ad=86(I) Atr=02(Bulk) MxPS=1024 Ivl=0ms
      E:  Ad=04(O) Atr=02(Bulk) MxPS=1024 Ivl=0ms
      I:* If#= 4 Alt= 0 #EPs= 2 Cls=ff(vend.) Sub=42 Prot=01 Driver=(none)
      E:  Ad=05(O) Atr=02(Bulk) MxPS=1024 Ivl=0ms
      E:  Ad=88(I) Atr=02(Bulk) MxPS=1024 Ivl=0ms
      I:* If#= 5 Alt= 0 #EPs= 3 Cls=ff(vend.) Sub=ff Prot=50 Driver=qmi_wwan
      E:  Ad=89(I) Atr=03(Int.) MxPS=   8 Ivl=32ms
      E:  Ad=8e(I) Atr=02(Bulk) MxPS=1024 Ivl=0ms
      E:  Ad=0f(O) Atr=02(Bulk) MxPS=1024 Ivl=0ms
      
      Signed-off-by: default avatarZHANG Yuntian <yt@radxa.com>
      Link: https://patch.msgid.link/D1EB81385E405DFE+20240803074656.567061-1-yt@radxa.com
      
      
      Signed-off-by: default avatarJakub Kicinski <kuba@kernel.org>
      1ca645a2
    • Tristram Ha's avatar
      net: dsa: microchip: Fix Wake-on-LAN check to not return an error · c7a19018
      Tristram Ha authored
      
      The wol variable in ksz_port_set_mac_address() is declared with random
      data, but the code in ksz_get_wol call may not be executed so the
      WAKE_MAGIC check may be invalid resulting in an error message when
      setting a MAC address after starting the DSA driver.
      
      Fixes: 3b454b63 ("net: dsa: microchip: ksz9477: Add Wake on Magic Packet support")
      Signed-off-by: default avatarTristram Ha <tristram.ha@microchip.com>
      Reviewed-by: default avatarOleksij Rempel <o.rempel@pengutronix.de>
      Reviewed-by: default avatarFlorian Fainelli <florian.fainelli@broadcom.com>
      Link: https://patch.msgid.link/20240805235200.24982-1-Tristram.Ha@microchip.com
      
      
      Signed-off-by: default avatarJakub Kicinski <kuba@kernel.org>
      c7a19018
  3. Aug 06, 2024
  4. Aug 05, 2024
  5. Aug 04, 2024
    • Dmitry Safonov's avatar
      net/tcp: Disable TCP-AO static key after RCU grace period · 14ab4792
      Dmitry Safonov authored
      The lifetime of TCP-AO static_key is the same as the last
      tcp_ao_info. On the socket destruction tcp_ao_info ceases to be
      with RCU grace period, while tcp-ao static branch is currently deferred
      destructed. The static key definition is
      : DEFINE_STATIC_KEY_DEFERRED_FALSE(tcp_ao_needed, HZ);
      
      which means that if RCU grace period is delayed by more than a second
      and tcp_ao_needed is in the process of disablement, other CPUs may
      yet see tcp_ao_info which atent dead, but soon-to-be.
      And that breaks the assumption of static_key_fast_inc_not_disabled().
      
      See the comment near the definition:
      > * The caller must make sure that the static key can't get disabled while
      > * in this function. It doesn't patch jump labels, only adds a user to
      > * an already enabled static key.
      
      Originally it was introduced in commit eb8c5072 ("jump_label:
      Prevent key->enabled int overflow"), which is needed for the atomic
      contexts, one of which would be the creation of a full socket from a
      request socket. In that atomic context, it's known by the presence
      of the key (md5/ao) that the static branch is already enabled.
      So, the ref counter for that static branch is just incremented
      instead of holding the proper mutex.
      static_key_fast_inc_not_disabled() is just a helper for such usage
      case. But it must not be used if the static branch could get disabled
      in parallel as it's not protected by jump_label_mutex and as a result,
      races with jump_label_update() implementation details.
      
      Happened on netdev test-bot[1], so not a theoretical issue:
      
      [] jump_label: Fatal kernel bug, unexpected op at tcp_inbound_hash+0x1a7/0x870 [ffffffffa8c4e9b7] (eb 50 0f 1f 44 != 66 90 0f 1f 00)) size:2 type:1
      [] ------------[ cut here ]------------
      [] kernel BUG at arch/x86/kernel/jump_label.c:73!
      [] Oops: invalid opcode: 0000 [#1] PREEMPT SMP KASAN NOPTI
      [] CPU: 3 PID: 243 Comm: kworker/3:3 Not tainted 6.10.0-virtme #1
      [] Hardware name: QEMU Standard PC (i440FX + PIIX, 1996), BIOS rel-1.16.3-0-ga6ed6b701f0a-prebuilt.qemu.org 04/01/2014
      [] Workqueue: events jump_label_update_timeout
      [] RIP: 0010:__jump_label_patch+0x2f6/0x350
      ...
      [] Call Trace:
      []  <TASK>
      []  arch_jump_label_transform_queue+0x6c/0x110
      []  __jump_label_update+0xef/0x350
      []  __static_key_slow_dec_cpuslocked.part.0+0x3c/0x60
      []  jump_label_update_timeout+0x2c/0x40
      []  process_one_work+0xe3b/0x1670
      []  worker_thread+0x587/0xce0
      []  kthread+0x28a/0x350
      []  ret_from_fork+0x31/0x70
      []  ret_from_fork_asm+0x1a/0x30
      []  </TASK>
      [] Modules linked in: veth
      [] ---[ end trace 0000000000000000 ]---
      [] RIP: 0010:__jump_label_patch+0x2f6/0x350
      
      [1]: https://netdev-3.bots.linux.dev/vmksft-tcp-ao-dbg/results/696681/5-connect-deny-ipv6/stderr
      
      
      
      Cc: stable@kernel.org
      Fixes: 67fa83f7 ("net/tcp: Add static_key for TCP-AO")
      Signed-off-by: default avatarDmitry Safonov <0x7f454c46@gmail.com>
      Reviewed-by: default avatarEric Dumazet <edumazet@google.com>
      Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
      14ab4792
  6. Aug 02, 2024
  7. Aug 01, 2024
Loading