Home
last modified time | relevance | path

Searched refs:unique (Results 1 – 25 of 462) sorted by relevance

12345678910>>...19

/linux-6.15/fs/fuse/
H A Dfuse_trace.h87 __field(uint64_t, unique)
94 __entry->unique = req->in.h.unique;
100 __entry->connection, __entry->unique, __entry->opcode,
111 __field(uint64_t, unique)
118 __entry->unique = req->in.h.unique;
124 __entry->unique, __entry->len, __entry->error)
H A Dfuse_dev_i.h49 unsigned int fuse_req_hash(u64 unique);
50 struct fuse_req *fuse_request_find(struct fuse_pqueue *fpq, u64 unique);
H A Ddev.c320 unsigned int fuse_req_hash(u64 unique) in fuse_req_hash() argument
689 req->in.h.unique = fuse_get_unique(fiq); in fuse_request_queue_background_uring()
773 req->in.h.unique = unique; in fuse_simple_notify_reply()
1241 ih.unique = (req->in.h.unique | FUSE_INT_REQ_BIT); in fuse_read_interrupt()
1242 arg.unique = req->in.h.unique; in fuse_read_interrupt()
1291 .unique = fuse_get_unique_locked(fiq), in fuse_read_single_forget()
1322 .unique = fuse_get_unique_locked(fiq), in fuse_read_batch_forget()
1493 hash = fuse_req_hash(req->in.h.unique); in fuse_dev_do_read()
2065 if (req->in.h.unique == unique) in fuse_request_find()
2131 if (!oh.unique) { in fuse_dev_do_write()
[all …]
H A Ddev_uring.c526 if (oh->unique == 0) { in fuse_uring_out_header_has_err()
541 if ((oh->unique & ~FUSE_INT_REQ_BIT) != req->in.h.unique) { in fuse_uring_out_header_has_err()
543 req->in.h.unique, in fuse_uring_out_header_has_err()
544 oh->unique & ~FUSE_INT_REQ_BIT); in fuse_uring_out_header_has_err()
553 WARN_ON_ONCE(oh->unique & FUSE_INT_REQ_BIT); in fuse_uring_out_header_has_err()
601 .commit_id = req->in.h.unique, in fuse_uring_args_to_ring()
661 if (WARN_ON(req->in.h.unique == 0)) in fuse_uring_copy_to_ring()
744 hash = fuse_req_hash(req->in.h.unique); in fuse_uring_add_to_pq()
1256 req->in.h.unique = fuse_get_unique(fiq); in fuse_uring_queue_fuse_req()
/linux-6.15/rust/kernel/list/
H A Darc.rs208 fn from(unique: UniqueArc<T>) -> Self { in from()
209 Self::from(Pin::from(unique)) in from()
219 fn from(mut unique: Pin<UniqueArc<T>>) -> Self { in from()
221 unsafe { T::on_create_list_arc_from_unique(unique.as_mut()) }; in from()
222 let arc = Arc::from(unique); in from()
237 pub fn pair_from_unique<const ID2: u64>(unique: UniqueArc<T>) -> (Self, ListArc<T, ID2>) in pair_from_unique()
241 Self::pair_from_pin_unique(Pin::from(unique)) in pair_from_unique()
249 mut unique: Pin<UniqueArc<T>>, in pair_from_pin_unique()
257 unsafe { <T as ListArcSafe<ID>>::on_create_list_arc_from_unique(unique.as_mut()) }; in pair_from_pin_unique()
259 unsafe { <T as ListArcSafe<ID2>>::on_create_list_arc_from_unique(unique.as_mut()) }; in pair_from_pin_unique()
[all …]
/linux-6.15/include/trace/events/
H A Dafs.h738 __entry->fid.unique,
772 __entry->fid.unique,
809 __entry->fid.unique,
850 __entry->fid.unique,
1055 __entry->unique = dvnode->fid.unique;
1088 __entry->unique = dvnode->fid.unique;
1110 __entry->unique = vnode->fid.unique;
1132 __entry->unique = vnode->fid.unique;
1155 __entry->unique = dvnode->fid.unique;
1180 __entry->unique = dvnode->fid.unique;
[all …]
/linux-6.15/drivers/gpu/drm/
H A Ddrm_pci.c57 master->unique = kasprintf(GFP_KERNEL, "pci:%04x:%02x:%02x.%d", in drm_pci_set_busid()
62 if (!master->unique) in drm_pci_set_busid()
65 master->unique_len = strlen(master->unique); in drm_pci_set_busid()
H A Ddrm_ioctl.c124 if (copy_to_user(u->unique, master->unique, master->unique_len)) { in drm_getunique()
139 kfree(master->unique); in drm_unset_busid()
140 master->unique = NULL; in drm_unset_busid()
149 if (master->unique != NULL) in drm_set_busid()
159 WARN_ON(!dev->unique); in drm_set_busid()
160 master->unique = kstrdup(dev->unique, GFP_KERNEL); in drm_set_busid()
161 if (master->unique) in drm_set_busid()
162 master->unique_len = strlen(dev->unique); in drm_set_busid()
/linux-6.15/fs/afs/
H A Ddir_edit.c339 new_fid->vnode, new_fid->unique, name->name); in afs_edit_dir_add()
345 de->u.unique = htonl(new_fid->unique); in afs_edit_dir_add()
448 ntohl(de->u.vnode), ntohl(de->u.unique), in afs_edit_dir_remove()
471 vnode->fid.vid, vnode->fid.vnode, vnode->fid.unique, in afs_edit_dir_remove()
490 vnode->fid.vid, vnode->fid.vnode, vnode->fid.unique, in afs_edit_dir_remove()
576 de->u.unique = htonl(new_dvnode->fid.unique); in afs_edit_dir_update_dotdot()
579 ntohl(de->u.vnode), ntohl(de->u.unique), ".."); in afs_edit_dir_update_dotdot()
627 de->u.unique = htonl(dvnode->fid.unique); in afs_mkdir_init_dir()
630 dvnode->fid.vnode, dvnode->fid.unique, "."); in afs_mkdir_init_dir()
636 de->u.unique = htonl(parent_dvnode->fid.unique); in afs_mkdir_init_dir()
[all …]
H A Dinode.c131 vnode->fid.unique); in dump_vnode()
136 parent_vnode->fid.unique); in dump_vnode()
162 vp->fid.vid, vp->fid.vnode, vp->fid.unique, in afs_inode_init_from_status()
264 vp->fid.vid, vp->fid.vnode, vp->fid.unique, in afs_apply_status()
273 vnode->fid.unique, in afs_apply_status()
486 fid->unique == vnode->fid.unique); in afs_ilookup5_test_by_fid()
516 inode->i_generation = vnode->fid.unique; in afs_iget5_set()
528 __be32 unique; in afs_get_inode_cache() member
541 key.unique = htonl(vnode->fid.unique); in afs_get_inode_cache()
614 vnode->fid.unique = 1; in afs_iget5_set_root()
[all …]
H A Dfsclient.c27 fid->unique = ntohl(*bp++); in xdr_decode_AFSFid()
291 bp[3] = htonl(vp->fid.unique); in afs_fs_fetch_status()
450 bp[3] = htonl(vp->fid.unique); in afs_fs_fetch_data64()
485 bp[3] = htonl(vp->fid.unique); in afs_fs_fetch_data()
558 *bp++ = htonl(dvp->fid.unique); in afs_fs_create_file()
612 *bp++ = htonl(dvp->fid.unique); in afs_fs_make_dir()
828 *bp++ = htonl(vp->fid.unique); in afs_fs_link()
1095 *bp++ = htonl(vp->fid.unique); in afs_fs_store_data64()
1149 *bp++ = htonl(vp->fid.unique); in afs_fs_store_data()
1218 *bp++ = htonl(vp->fid.unique); in afs_fs_setattr_size64()
[all …]
H A Ddynroot.c40 inode->i_generation = fid->unique; in afs_iget5_pseudo_set()
51 struct afs_fid fid = { .vnode = ino, .unique = 1, }; in afs_iget_pseudo_dir()
63 inode, inode->i_ino, fid.vid, fid.vnode, fid.unique); in afs_iget_pseudo_dir()
252 struct afs_fid fid = { .vnode = ino, .unique = 1, }; in afs_lookup_atcell()
373 struct afs_fid fid = { .vid = 0, .vnode = 1, .unique = 1,}; in afs_dynroot_iget_root()
/linux-6.15/drivers/accel/
H A Ddrm_accel.c61 if (master && master->unique) in accel_name_info()
62 seq_printf(m, " master=%s", master->unique); in accel_name_info()
63 if (dev->unique) in accel_name_info()
64 seq_printf(m, " unique=%s", dev->unique); in accel_name_info()
/linux-6.15/Documentation/ABI/testing/
H A Dsysfs-devices-sun5 The file contains a Slot-unique ID which provided by the _SUN
9 "The _SUN value is required to be unique among the slots of
H A Dsysfs-firmware-sgi_uv31 machines, which each partition running a unique copy
32 of the operating system. Each partition will have a unique
57 unique ordinal value (ex. /sys/firmware/sgi_uv/hubs/hub_5)
96 A port object's name is appended by a unique ordinal value
104 The conn_hub entry contains a value representing the unique
109 The conn_port entry contains a value representing the unique
H A Dsysfs-bus-rbd94 client_id (RO) The ceph unique client id that was assigned
98 image resides. An rbd image name is unique
117 (RO) The unique identifier for the rbd image's pool. This is a
128 image_id (RO) The unique id for the rbd image. (For rbd
169 client_addr (RO) The ceph unique client
/linux-6.15/fs/coda/
H A Dpsdev.c116 hdr.opcode, hdr.unique); in coda_psdev_write()
122 hdr.opcode, hdr.unique); in coda_psdev_write()
150 if (tmp->uc_unique == hdr.unique) { in coda_psdev_write()
160 __func__, hdr.opcode, hdr.unique); in coda_psdev_write()
169 hdr.opcode, hdr.unique); in coda_psdev_write()
/linux-6.15/include/linux/
H A Delfnote.h72 #define _ELFNOTE(size, name, unique, type, desc) \ argument
79 } _ELFNOTE_PASTE(_note_, unique) \
/linux-6.15/Documentation/devicetree/bindings/input/
H A Dtwl4030-keypad.txt5 A key can be placed at each intersection of a unique row and a unique column.
H A Domap-keypad.txt5 A key can be placed at each intersection of a unique row and a unique column.
H A Dmediatek,mt6779-keypad.yaml18 A key can be placed at each intersection of a unique row and a unique column.
/linux-6.15/Documentation/devicetree/bindings/sound/
H A Dsound-card-common.yaml14 $ref: /schemas/types.yaml#/definitions/non-unique-string-array
21 $ref: /schemas/types.yaml#/definitions/non-unique-string-array
H A Daudio-graph.yaml28 $ref: /schemas/types.yaml#/definitions/non-unique-string-array
35 $ref: /schemas/types.yaml#/definitions/non-unique-string-array
/linux-6.15/arch/alpha/kernel/
H A Dprocess.c226 current_thread_info()->pcb.unique = 0; in flush_thread()
268 childti->pcb.unique = tls; in copy_thread()
327 dest[32] = ti->pcb.unique; in dump_elf_thread()
/linux-6.15/Documentation/devicetree/bindings/pci/
H A Dpci-ep.yaml48 Endpoint Controller, otherwise an unstable (across boots) unique number
53 must be unique.

12345678910>>...19