Symbol: ip_map
drivers/gpu/drm/amd/amdgpu/amdgpu.h
1044
struct amdgpu_ip_map_info ip_map;
drivers/gpu/drm/amd/amdgpu/amdgpu_ip.c
38
dev_inst = adev->ip_map.dev_inst[block][inst];
drivers/gpu/drm/amd/amdgpu/amdgpu_ip.c
75
adev->ip_map.dev_inst[ip_block][l++] = i;
drivers/gpu/drm/amd/amdgpu/amdgpu_ip.c
79
adev->ip_map.dev_inst[ip_block][l] = -1;
drivers/gpu/drm/amd/amdgpu/amdgpu_ip.c
84
u32 ip_map[][2] = {
drivers/gpu/drm/amd/amdgpu/amdgpu_ip.c
91
for (i = 0; i < ARRAY_SIZE(ip_map); ++i)
drivers/gpu/drm/amd/amdgpu/amdgpu_ip.c
92
amdgpu_populate_ip_map(adev, ip_map[i][0], ip_map[i][1]);
drivers/gpu/drm/amd/amdgpu/amdgpu_ip.c
94
adev->ip_map.logical_to_dev_inst = amdgpu_logical_to_dev_inst;
drivers/gpu/drm/amd/amdgpu/amdgpu_ip.c
95
adev->ip_map.logical_to_dev_mask = amdgpu_logical_to_dev_mask;
drivers/gpu/drm/amd/amdgpu/gfx_v9_4_3.c
1711
inst = adev->ip_map.logical_to_dev_inst ?
drivers/gpu/drm/amd/amdgpu/gfx_v9_4_3.c
1712
adev->ip_map.logical_to_dev_inst(
drivers/gpu/drm/amd/amdgpu/soc15_common.h
29
(adev->ip_map.logical_to_dev_inst ? \
drivers/gpu/drm/amd/amdgpu/soc15_common.h
30
adev->ip_map.logical_to_dev_inst(adev, ip##_HWIP, inst) : inst)
drivers/gpu/drm/amd/amdgpu/soc15_common.h
32
(adev->ip_map.logical_to_dev_mask ? \
drivers/gpu/drm/amd/amdgpu/soc15_common.h
33
adev->ip_map.logical_to_dev_mask(adev, ip##_HWIP, mask) : mask)
drivers/gpu/drm/amd/ras/ras_mgr/ras_sys.h
101
(adev->ip_map.logical_to_dev_mask ? \
drivers/gpu/drm/amd/ras/ras_mgr/ras_sys.h
102
adev->ip_map.logical_to_dev_mask(adev, ip##_HWIP, mask) : mask); \
drivers/gpu/drm/amd/ras/ras_mgr/ras_sys.h
94
adev->ip_map.logical_to_dev_inst ? \
drivers/gpu/drm/amd/ras/ras_mgr/ras_sys.h
95
adev->ip_map.logical_to_dev_inst(adev, ip##_HWIP, inst) : inst; \
net/sunrpc/svcauth_unix.c
112
struct ip_map *im = container_of(item, struct ip_map,h);
net/sunrpc/svcauth_unix.c
126
struct ip_map *orig = container_of(corig, struct ip_map, h);
net/sunrpc/svcauth_unix.c
127
struct ip_map *new = container_of(cnew, struct ip_map, h);
net/sunrpc/svcauth_unix.c
133
struct ip_map *new = container_of(cnew, struct ip_map, h);
net/sunrpc/svcauth_unix.c
134
struct ip_map *item = container_of(citem, struct ip_map, h);
net/sunrpc/svcauth_unix.c
1353
struct ip_map *im;
net/sunrpc/svcauth_unix.c
1357
im = container_of(items[i], struct ip_map, h);
net/sunrpc/svcauth_unix.c
141
struct ip_map *new = container_of(cnew, struct ip_map, h);
net/sunrpc/svcauth_unix.c
142
struct ip_map *item = container_of(citem, struct ip_map, h);
net/sunrpc/svcauth_unix.c
1420
struct ip_map *ipmp;
net/sunrpc/svcauth_unix.c
149
struct ip_map *i = kmalloc_obj(*i);
net/sunrpc/svcauth_unix.c
166
struct ip_map *im = container_of(h, struct ip_map, h);
net/sunrpc/svcauth_unix.c
178
static struct ip_map *__ip_map_lookup(struct cache_detail *cd, char *class, struct in6_addr *addr);
net/sunrpc/svcauth_unix.c
179
static int __ip_map_update(struct cache_detail *cd, struct ip_map *ipm, struct unix_domain *udom, time64_t expiry);
net/sunrpc/svcauth_unix.c
198
struct ip_map *ipmp;
net/sunrpc/svcauth_unix.c
267
struct ip_map *im;
net/sunrpc/svcauth_unix.c
275
im = container_of(h, struct ip_map, h);
net/sunrpc/svcauth_unix.c
293
static struct ip_map *__ip_map_lookup(struct cache_detail *cd, char *class,
net/sunrpc/svcauth_unix.c
296
struct ip_map ip;
net/sunrpc/svcauth_unix.c
306
return container_of(ch, struct ip_map, h);
net/sunrpc/svcauth_unix.c
311
static int __ip_map_update(struct cache_detail *cd, struct ip_map *ipm,
net/sunrpc/svcauth_unix.c
314
struct ip_map ip;
net/sunrpc/svcauth_unix.c
340
static inline struct ip_map *
net/sunrpc/svcauth_unix.c
343
struct ip_map *ipm = NULL;
net/sunrpc/svcauth_unix.c
370
ip_map_cached_put(struct svc_xprt *xprt, struct ip_map *ipm)
net/sunrpc/svcauth_unix.c
392
struct ip_map *ipm;
net/sunrpc/svcauth_unix.c
942
struct ip_map *ipm;
samples/bpf/sampleip_kern.c
20
} ip_map SEC(".maps");
samples/bpf/sampleip_kern.c
29
value = bpf_map_lookup_elem(&ip_map, &ip);
samples/bpf/sampleip_kern.c
34
bpf_map_update_elem(&ip_map, &ip, &init_val, BPF_NOEXIST);