Results 1 to 1 of 1
Thread: ASIC support for buffer chains
|
Enjoy an ad free experience by logging in. Not a member yet? Register.
|
|
-
01-31-2007 #1
- Join Date
- Apr 2006
- Posts
- 2
ASIC support for buffer chains
struct buffer {
struct buffer *next;
int length;
char *data;
};
Can the Linux buffer chains (such as skbuffs) be made to support this type of mechanism? Is there any expectation of ordering in the Linux data structures that would cause problems with this?