diff options
| author | Alexei Starovoitov <ast@kernel.org> | 2025-10-12 04:27:47 +0300 |
|---|---|---|
| committer | Alexei Starovoitov <ast@kernel.org> | 2025-10-12 04:27:47 +0300 |
| commit | 39e9d5f63075f4d54e3b59b8238478c32af92755 (patch) | |
| tree | 98546f7b1170336f4e8ce01b320eccec0ed2de1c /include/linux/node.h | |
| parent | 4c97c4b149a019a3b318dc6ea3dc96efe0ee1f39 (diff) | |
| parent | 67029a49db6c1f21106a1b5fcdd0ea234a6e0711 (diff) | |
| download | linux-39e9d5f63075f4d54e3b59b8238478c32af92755.tar.xz | |
Merge git://git.kernel.org/pub/scm/linux/kernel/git/bpf/bpf before 6.18-rc1
Cross-merge BPF and other fixes after downstream PR.
No conflicts.
Signed-off-by: Alexei Starovoitov <ast@kernel.org>
Diffstat (limited to 'include/linux/node.h')
| -rw-r--r-- | include/linux/node.h | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/include/linux/node.h b/include/linux/node.h index 2c7529335b21..866e3323f1fd 100644 --- a/include/linux/node.h +++ b/include/linux/node.h @@ -85,6 +85,8 @@ struct node_cache_attrs { void node_add_cache(unsigned int nid, struct node_cache_attrs *cache_attrs); void node_set_perf_attrs(unsigned int nid, struct access_coordinate *coord, enum access_coordinate_class access); +void node_update_perf_attrs(unsigned int nid, struct access_coordinate *coord, + enum access_coordinate_class access); #else static inline void node_add_cache(unsigned int nid, struct node_cache_attrs *cache_attrs) @@ -96,6 +98,12 @@ static inline void node_set_perf_attrs(unsigned int nid, enum access_coordinate_class access) { } + +static inline void node_update_perf_attrs(unsigned int nid, + struct access_coordinate *coord, + enum access_coordinate_class access) +{ +} #endif struct node { |
