blob: 46cc9b89ac79fdf08d96e8b25f8171cec1133b69 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
|
/* SPDX-License-Identifier: GPL-2.0
*
* Network memory
*
* Author: Mina Almasry <almasrymina@google.com>
*/
#ifndef _NET_NETMEM_H
#define _NET_NETMEM_H
/**
* typedef netmem_ref - a nonexistent type marking a reference to generic
* network memory.
*
* A netmem_ref currently is always a reference to a struct page. This
* abstraction is introduced so support for new memory types can be added.
*
* Use the supplied helpers to obtain the underlying memory pointer and fields.
*/
typedef unsigned long __bitwise netmem_ref;
/* This conversion fails (returns NULL) if the netmem_ref is not struct page
* backed.
*
* Currently struct page is the only possible netmem, and this helper never
* fails.
*/
static inline struct page *netmem_to_page(netmem_ref netmem)
{
return (__force struct page *)netmem;
}
/* Converting from page to netmem is always safe, because a page can always be
* a netmem.
*/
static inline netmem_ref page_to_netmem(struct page *page)
{
return (__force netmem_ref)page;
}
static inline int netmem_ref_count(netmem_ref netmem)
{
return page_ref_count(netmem_to_page(netmem));
}
static inline unsigned long netmem_to_pfn(netmem_ref netmem)
{
return page_to_pfn(netmem_to_page(netmem));
}
static inline netmem_ref netmem_compound_head(netmem_ref netmem)
{
return page_to_netmem(compound_head(netmem_to_page(netmem)));
}
#endif /* _NET_NETMEM_H */
|