You are using an out of date browser. It may not display this or other websites correctly. You should upgrade or use an alternative browser.
infiniband management
About this tag
The infiniband management tag covers discussions about managing InfiniBand and RDMA (Remote Direct Memory Access) infrastructure, with a focus on kernel-level security and reliability. Recent content highlights a Linux kernel security fix in the ib_umad_write function, which now rejects negative data_len values to prevent memory-safety bugs. This fix is critical because the umad interface provides userspace access to InfiniBand management datagrams, operating close to privileged kernel components and high-performance networking paths. Topics under this tag typically involve kernel patches, validation checks, and stability improvements for InfiniBand/RDMA systems, relevant for system administrators and developers maintaining high-performance computing or enterprise networking environments.
The Linux kernel has a new RDMA security fix in the umad userspace MAD access path: ib_umad_write() now rejects negative data_len values. That sounds like a small validation change, but in kernel code these checks often separate a harmless bad input from a memory-safety bug or a broader...