Commit 6a8da869fa33 for kernel

commit 6a8da869fa338e008533dd6385a0eb35dee6acf4
Merge: 5e9c8baee032 fd098a23bf8f
Author: Jakub Kicinski <kuba@kernel.org>
Date:   Thu Jul 23 11:00:03 2026 -0700

    Merge branch 'drop_monitor-take-care-of-32bit-kernels'

    Eric Dumazet says:

    ====================
    drop_monitor: take care of 32bit kernels

    This series fixes two drop_monitor issues on 32-bit architectures:

    - Patch 1 uses nla_total_size_64bit() for PC and TIMESTAMP attributes to
      account for alignment padding added by nla_put_u64_64bit(), avoiding
      potential skb_over_panic() crashes.

    - Patch 2 moves u64_stats updates before spin_unlock_irqrestore(), ensuring
      local interrupts are disabled to prevent seqcount corruption from nested
      interrupts in probe context.
    ====================

    Link: https://patch.msgid.link/20260722141743.3266924-1-edumazet@google.com
    Signed-off-by: Jakub Kicinski <kuba@kernel.org>