- BlueField-2 Quickstart Guide for Clemson R7525s
- NVIDIA Mellanox Bluefield-2 SmartNIC Hands-On Tutorial: Host setup is little outdate. See
Host setup
bellow. - NVIDIA Mellanox Bluefield-2 SmartNIC Hands-On Tutorial: “Rig for Dive” — Part III: Ultimate Cloudlab Setup
- NVIDIA Mellanox Bluefield-2 SmartNIC Hands-On Tutorial: “Rig for Dive” — Part V: Install the Latest Bluefield OS with DPDK and DOCA
- Arm Architecture Reference Manual for A-profile architecture
- Procedure Call Standard for the Arm® 64-bit Architecture (AArch64)
- [Slides] ARMv8-A A64 ISA Overview
- ARM64 Assembly Language Notes
- A Guide to ARM64 / AArch64 Assembly on Linux with Shellcodes and Cryptography
- ARMv8 A64 Quick Reference
- ARM Instruction Set Reference
- Encoding of immediate values on AArch64
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
# | |
# Copyright IBM, Corp. 2010 | |
# | |
# Authors: | |
# Anthony Liguori <[email protected]> | |
# | |
# This work is licensed under the terms of the GNU GPL, version 2. See | |
# the COPYING file in the top-level directory. |
- Linux Network Stack Overview
- Linux Networking Stack From the Ground Up
- Switch Mac Address: What’s It and How Does it Work?
- Introduction to smartNIC and their use cases
- How to receive a million packets
- ARP Protocol
- Configuring Multi-Queue NICs
- Kernel-bypass techniques for high-speed network packet processing [VIDEO]
- Making your own malloc library for troubleshooting
- GLIBC hook for malloc
- Malloc tutorial
- A Malloc Tutorial by Marwan Burelle
Main issue is handling the recursive calls inside malloc. If you use printf in malloc that might cause issue as printf itself calls malloc for memory allocation resulting infinite recursion. On the other hand in some cases ld.so uses calloc internally. This alos result in infinite recursion.