Home
last modified time | relevance | path

Searched refs:global_id (Results 1 – 23 of 23) sorted by relevance

/linux/include/linux/ceph/
H A Dceph_debug.h26 &client->fsid, client->monc.auth->global_id, \
35 client->monc.auth->global_id, \
47 client->monc.auth->global_id, __func__, ##__VA_ARGS__)
53 client->monc.auth->global_id, ##__VA_ARGS__)
56 client->monc.auth->global_id, ##__VA_ARGS__)
59 client->monc.auth->global_id, ##__VA_ARGS__)
62 client->monc.auth->global_id, ##__VA_ARGS__)
65 client->monc.auth->global_id, ##__VA_ARGS__)
68 client->monc.auth->global_id, ##__VA_ARGS__)
71 client->monc.auth->global_id, ##__VA_ARGS__)
H A Dauth.h53 int (*handle_reply)(struct ceph_auth_client *ac, u64 global_id,
97 u64 global_id; /* our unique id in system */ member
107 void ceph_auth_set_global_id(struct ceph_auth_client *ac, u64 global_id);
165 u64 global_id, void *reply, int reply_len,
H A Dmessenger.h68 u64 global_id, void *reply, int reply_len,
/linux/net/ceph/
H A Dauth.c39 void ceph_auth_set_global_id(struct ceph_auth_client *ac, u64 global_id) in ceph_auth_set_global_id() argument
41 dout("%s global_id %llu\n", __func__, global_id); in ceph_auth_set_global_id()
43 if (!global_id) in ceph_auth_set_global_id()
46 if (ac->global_id && global_id != ac->global_id) in ceph_auth_set_global_id()
47 pr_err("global_id changed from %llu to %llu\n", ac->global_id, in ceph_auth_set_global_id()
48 global_id); in ceph_auth_set_global_id()
50 ac->global_id = global_id; in ceph_auth_set_global_id()
151 ceph_encode_64(&p, ac->global_id); in ceph_auth_build_hello()
206 u64 global_id; in ceph_handle_auth_reply() local
218 global_id = ceph_decode_64(&p); in ceph_handle_auth_reply()
[all …]
H A Dauth_none.c54 ceph_encode_64_safe(&p, end, ac->global_id, e_range); in ceph_auth_none_build_authorizer()
72 static int handle_reply(struct ceph_auth_client *ac, u64 global_id, in handle_reply() argument
80 ceph_auth_set_global_id(ac, global_id); in handle_reply()
H A Dauth_x_protocol.h66 __le64 global_id; member
H A Dauth_x.c390 msg_a->global_id = cpu_to_le64(ac->global_id); in ceph_x_build_authorizer()
600 static int handle_auth_session_key(struct ceph_auth_client *ac, u64 global_id, in handle_auth_session_key() argument
616 ceph_auth_set_global_id(ac, global_id); in handle_auth_session_key()
667 static int ceph_x_handle_reply(struct ceph_auth_client *ac, u64 global_id, in ceph_x_handle_reply() argument
701 ret = handle_auth_session_key(ac, global_id, &p, end, in ceph_x_handle_reply()
H A Dmessenger_v2.c1452 u64 global_id = ceph_client_gid(client); in prepare_client_ident() local
1475 global_id, con->v2.global_seq, client->supported_features, in prepare_client_ident()
1489 ceph_encode_64(&p, global_id); in prepare_client_ident()
2369 u64 global_id; in process_auth_done() local
2377 ceph_decode_64_safe(&p, end, global_id, bad); in process_auth_done()
2382 __func__, con, global_id, con->v2.con_mode, payload_len); in process_auth_done()
2387 ret = con->ops->handle_auth_done(con, global_id, p, payload_len, in process_auth_done()
2481 u64 global_id; in process_server_ident() local
2497 ceph_decode_64_safe(&p, end, global_id, bad); in process_server_ident()
2506 global_id, global_seq, features, required_features, flags, cookie); in process_server_ident()
[all …]
H A Ddebugfs.c418 client->monc.auth->global_id); in ceph_debugfs_client_init()
H A Dceph_common.c700 return client->monc.auth->global_id; in ceph_client_gid()
H A Dosd_client.c5632 u64 global_id, void *reply, int reply_len, in osd_handle_auth_done() argument
/linux/drivers/tee/optee/
H A Dffa_abi.c43 u64 global_id; member
55 .key_offset = offsetof(struct shm_rhash, global_id),
60 u64 global_id) in optee_shm_from_ffa_handle() argument
66 r = rhashtable_lookup_fast(&optee->ffa.global_ids, &global_id, in optee_shm_from_ffa_handle()
76 u64 global_id) in optee_shm_add_ffa_handle() argument
85 r->global_id = global_id; in optee_shm_add_ffa_handle()
98 static int optee_shm_rem_ffa_handle(struct optee *optee, u64 global_id) in optee_shm_rem_ffa_handle() argument
104 r = rhashtable_lookup_fast(&optee->ffa.global_ids, &global_id, in optee_shm_rem_ffa_handle()
135 if (mp->u.fmem.global_id != OPTEE_MSG_FMEM_INVALID_GLOBAL_ID) in from_msg_param_ffa_mem()
136 shm = optee_shm_from_ffa_handle(optee, mp->u.fmem.global_id); in from_msg_param_ffa_mem()
[all …]
/linux/fs/ceph/
H A Dmdsmap.c178 u64 global_id; in ceph_mdsmap_decode() local
191 global_id = ceph_decode_64(p); in ceph_mdsmap_decode()
239 doutc(cl, "%d/%d %lld mds%d.%d %s %s%s\n", i+1, n, global_id, in ceph_mdsmap_decode()
255 info->global_id = global_id; in ceph_mdsmap_decode()
H A Dmdsmap.h16 u64 global_id; member
H A Ddebugfs.c325 seq_printf(s, "global_id %llu\n", ac->global_id); in mds_sessions_show()
H A Dsnap.c927 client->monc.auth->global_id, __func__, in ceph_update_snap_trace()
H A Dmds_client.c6440 u64 global_id, void *reply, int reply_len, in mds_handle_auth_done() argument
/linux/arch/loongarch/include/asm/
H A Dcpu-info.h57 int global_id; /* physical global thread number */ member
/linux/arch/loongarch/kernel/
H A Dproc.c41 seq_printf(m, "global_id\t\t: %d\n", cpu_data[n].global_id); in show_cpuinfo()
H A Dsmp.c370 cpu_data[0].global_id = cpu_logical_map(0); in loongson_prepare_cpus()
419 cpu_data[cpu].global_id = cpu_logical_map(cpu); in loongson_init_secondary()
/linux/drivers/android/binder/
H A Dprocess.rs815 if let Some(handle_ref) = refs.by_node.get(&node_ref.node.global_id()) { in insert_or_update_handle()
857 if let Some(handle_ref) = refs.by_node.get(&node_ref.node.global_id()) { in insert_or_update_handle()
864 let gid = node_ref.node.global_id(); in insert_or_update_handle()
952 let id = info.node_ref().node.global_id(); in update_ref()
H A Dfreeze.rs312 let handle = node_refs.by_node.get(&node.global_id())?; in get_freeze_cookie()
H A Dnode.rs315 pub(crate) fn global_id(&self) -> usize { in global_id() method