Re: [PATCH net-next v6 1/2] net: introduce abstraction for network memory
From: Paolo Abeni <pabeni@redhat.com>
Date: 2024-01-30 09:59:59
Also in:
lkml
From: Paolo Abeni <pabeni@redhat.com>
Date: 2024-01-30 09:59:59
Also in:
lkml
On Tue, 2024-01-23 at 14:17 -0800, Mina Almasry wrote:
diff --git a/include/net/netmem.h b/include/net/netmem.h new file mode 100644 index 000000000000..9f327d964782 --- /dev/null +++ b/include/net/netmem.h@@ -0,0 +1,41 @@ +/* SPDX-License-Identifier: GPL-2.0 + * + * Network memory + * + * Author: Mina Almasry <almasrymina@google.com> + */ + +#ifndef _NET_NETMEM_H +#define _NET_NETMEM_H + +/** + * netmem_ref - a nonexistent type marking a reference to generic network
Minor nit: here you need to prepend 'struct' to avoid a kdoc warning: include/net/netmem.h:20: warning: cannot understand function prototype: 'typedef unsigned long __bitwise netmem_ref; ' Should be: * struct netmem_ref - a nonexistent type marking a reference to generic network Cheers, Paolo