Converts a pointer to an mbuf structure to a pointer to the data stored in that mbuf structure.
#include <sys/mbuf.h>
m | Identifies the address of an mbuf structure. |
type | Indicates the type to which the resulting pointer should be cast. |
The MTOD macro converts a pointer to an mbuf structure into a pointer to the data stored in the mbuf structure. This macro can be used as in the following example:
char *bufp; bufp = MTOD(m, char *);
The MTOD macro can be called from either the process or interrupt environment.
The DTOM macro for mbuf Kernel Services.
I/O Kernel Services in AIX 5L Version 5.2 Kernel Extensions and Device Support Programming Concepts.