Home
last modified time | relevance | path

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

12345678910>>...13

/linux/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.h58 unsigned int fuse_req_hash(u64 unique);
59 struct fuse_req *fuse_request_find(struct fuse_pqueue *fpq, u64 unique);
H A Ddev.c321 unsigned int fuse_req_hash(u64 unique) in fuse_req_hash() argument
323 return hash_long(unique & ~FUSE_INT_REQ_BIT, FUSE_PQ_HASH_BITS); in fuse_req_hash()
377 req->in.h.unique = fuse_get_unique_locked(fiq); in fuse_request_assign_unique_locked()
387 req->in.h.unique = fuse_get_unique(fiq); in fuse_request_assign_unique()
784 struct fuse_args *args, u64 unique) in fuse_simple_notify_reply() argument
794 req->in.h.unique = unique; in fuse_simple_notify_reply()
1263 ih.unique = (req->in.h.unique | FUSE_INT_REQ_BIT); in fuse_read_interrupt()
1264 arg.unique = req->in.h.unique; in fuse_read_interrupt()
1313 .unique = fuse_get_unique_locked(fiq), in fuse_read_single_forget()
1344 .unique = fuse_get_unique_locked(fiq), in fuse_read_batch_forget()
[all …]
H A Ddev_uring.c544 if (oh->unique == 0) { in fuse_uring_out_header_has_err()
559 if ((oh->unique & ~FUSE_INT_REQ_BIT) != req->in.h.unique) { in fuse_uring_out_header_has_err()
561 req->in.h.unique, in fuse_uring_out_header_has_err()
562 oh->unique & ~FUSE_INT_REQ_BIT); in fuse_uring_out_header_has_err()
571 WARN_ON_ONCE(oh->unique & FUSE_INT_REQ_BIT); in fuse_uring_out_header_has_err()
621 .commit_id = req->in.h.unique, in fuse_uring_args_to_ring()
682 if (WARN_ON(req->in.h.unique == 0)) in fuse_uring_copy_to_ring()
765 hash = fuse_req_hash(req->in.h.unique); in fuse_uring_add_to_pq()
/linux/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/include/trace/events/
H A Dafs.h743 __entry->fid.unique = 0;
751 __entry->fid.unique,
777 __entry->fid.unique = 0;
785 __entry->fid.unique,
812 __entry->fid.unique = 0;
822 __entry->fid.unique,
851 __entry->fid.unique = 0;
863 __entry->fid.unique,
1035 __entry->dfid.vid, __entry->dfid.vnode, __entry->dfid.unique,
1037 __entry->fid.vnode, __entry->fid.unique)
[all …]
/linux/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()
579 ntohl(de->u.vnode), ntohl(de->u.unique), name->name); in afs_edit_dir_update()
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()
457 vnode->fid.vid, vnode->fid.vnode, vnode->fid.unique, in afs_fetch_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()
[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()
253 struct afs_fid fid = { .vnode = ino, .unique = 1, }; in afs_lookup_atcell()
374 struct afs_fid fid = { .vid = 0, .vnode = 1, .unique = 1,}; in afs_dynroot_iget_root()
H A Ddir_search.c161 _fid->unique = ntohl(dire->u.unique); in afs_dir_search_bucket()
/linux/drivers/gpu/drm/
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()
H A Ddrm_ioc32.c129 u32 unique; /* Unique name for driver instantiation */ member
146 .unique = compat_ptr(uq32.unique), in compat_drm_getunique()
/linux/Documentation/ABI/testing/
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-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-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/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/Documentation/devicetree/bindings/input/
H A Domap-keypad.txt5 A key can be placed at each intersection of a unique row and a unique column.
/linux/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/tools/testing/selftests/net/netfilter/
H A Dconntrack_resize.sh327 local unique=""
346 unique=$(uniq "$tmpfile" | tee "$tmpfile_uniq" | wc -l)
347 if [ "$l" -ne "$unique" ]; then
348 echo "FAIL: listing contained redundant entries for $ns: $l != $unique"
/linux/tools/testing/selftests/tpm2/
H A Dtpm2.py298 (len(self.auth_policy), len(self.parameters), len(self.unique))
302 unique=bytes()): argument
308 self.unique = unique
318 len(self.unique),
319 self.unique)
/linux/Documentation/userspace-api/media/mediactl/
H A Dmedia-ioc-g-topology.rst139 - Entity name as an UTF-8 NULL-terminated string. This name must be unique
261 - On pad to pad links: unique ID for the source pad.
263 On interface to entity links: unique ID for the interface.
267 - On pad to pad links: unique ID for the sink pad.
269 On interface to entity links: unique ID for the entity.
/linux/drivers/scsi/aacraid/
H A Dcommctrl.c188 fibctx->unique = (u32)((ulong)fibctx & 0xFFFFFFFF); in open_getadapter_fib()
210 if (context->unique == fibctx->unique) { in open_getadapter_fib()
212 fibctx->unique++; in open_getadapter_fib()
220 if (copy_to_user(arg, &fibctx->unique, in open_getadapter_fib()
221 sizeof(fibctx->unique))) { in open_getadapter_fib()
281 if (fibctx->unique == f.fibctx) { /* We found a winner */ in next_getadapter_fib()
422 if (fibctx->unique == (u32)(uintptr_t)arg) /* We found a winner */ in close_getadapter_fib()
/linux/tools/perf/Documentation/
H A Ddb-export.txt15 The export process provides records with unique sequential ids which allows the
27 so long as the new names are unique.
/linux/Documentation/admin-guide/nfs/
H A Dnfs-client.rst25 NFSv4 requires clients to identify themselves to servers with a unique
38 The nfs.nfs4_unique_id boot parameter specifies a unique string that can be
40 a server. Thus, if the system's node name is not unique, its
44 anything that is believed to be unique across all NFS clients. An
/linux/include/drm/
H A Ddrm_auth.h54 char *unique; member

12345678910>>...13