/kernel/linux/linux-5.10/drivers/gpu/drm/virtio/ |
H A D | virtgpu_drv.c | 52 char unique[20]; in virtio_gpu_pci_quirk() local 70 * and the unique returned will be the virtio_device "virtio0", in virtio_gpu_pci_quirk() 93 snprintf(unique, sizeof(unique), "pci:%s", pname); in virtio_gpu_pci_quirk() 94 return drm_dev_set_unique(dev, unique); in virtio_gpu_pci_quirk()
|
/kernel/linux/linux-5.10/fs/afs/ |
H A D | inode.c | 45 vnode->fid.unique); in dump_vnode() 50 parent_vnode->fid.unique); in dump_vnode() 68 vp->fid.vid, vp->fid.vnode, vp->fid.unique, in afs_inode_init_from_status() 164 vp->fid.vid, vp->fid.vnode, vp->fid.unique, in afs_apply_status() 173 vnode->fid.unique, in afs_apply_status() 346 vnode->fid.vid, vnode->fid.vnode, vnode->fid.unique, in afs_fetch_status() 375 fid->unique == vnode->fid.unique); in afs_ilookup5_test_by_fid() 405 inode->i_generation = vnode->fid.unique; in afs_iget5_set() 417 u32 unique; in afs_get_inode_cache() member [all...] |
H A D | fsclient.c | 26 fid->unique = ntohl(*bp++); in xdr_decode_AFSFid() 290 bp[3] = htonl(vp->fid.unique); in afs_fs_fetch_status() 466 bp[3] = htonl(vp->fid.unique); in afs_fs_fetch_data64() 502 bp[3] = htonl(vp->fid.unique); in afs_fs_fetch_data() 574 *bp++ = htonl(dvp->fid.unique); in afs_fs_create_file() 627 *bp++ = htonl(dvp->fid.unique); in afs_fs_make_dir() 706 *bp++ = htonl(dvp->fid.unique); in afs_fs_remove_file() 753 *bp++ = htonl(dvp->fid.unique); in afs_fs_remove_dir() 830 *bp++ = htonl(dvp->fid.unique); in afs_fs_link() 840 *bp++ = htonl(vp->fid.unique); in afs_fs_link() [all...] |
H A D | dynroot.c | 37 inode->i_generation = fid->unique; in afs_iget5_pseudo_set() 58 fid.unique = 1; in afs_iget_pseudo_dir() 61 fid.unique = 0; in afs_iget_pseudo_dir() 72 inode, inode->i_ino, fid.vid, fid.vnode, fid.unique); in afs_iget_pseudo_dir()
|
H A D | callback.c | 25 * Unfortunately, UUIDs are not guaranteed unique. 115 if (fid->vnode == 0 && fid->unique == 0) { in afs_break_one_callback() 162 cbb->fid.unique); in afs_break_some_callbacks()
|
/kernel/linux/linux-5.10/include/trace/events/ |
H A D | afs.h | 772 __entry->fid.unique = 0; 780 __entry->fid.unique, 806 __entry->fid.unique = 0; 814 __entry->fid.unique, 841 __entry->fid.unique = 0; 851 __entry->fid.unique, 880 __entry->fid.unique = 0; 892 __entry->fid.unique, 1104 __entry->dfid.vid, __entry->dfid.vnode, __entry->dfid.unique, 1106 __entry->fid.vnode, __entry->fid.unique) [all...] |
/kernel/linux/linux-6.6/include/trace/events/ |
H A D | afs.h | 778 __entry->fid.unique = 0; 786 __entry->fid.unique, 812 __entry->fid.unique = 0; 820 __entry->fid.unique, 847 __entry->fid.unique = 0; 857 __entry->fid.unique, 886 __entry->fid.unique = 0; 898 __entry->fid.unique, 1101 __entry->dfid.vid, __entry->dfid.vnode, __entry->dfid.unique, 1103 __entry->fid.vnode, __entry->fid.unique) [all...] |
/kernel/linux/linux-5.10/drivers/gpu/drm/ |
H A D | drm_ioctl.c | 78 * side-effect this fills out the unique name in the master structure. 79 * 2. Call GET_UNIQUE to read out the unique name from the master structure, 87 * means the the unique name for the master node just opening is _not_ filled 91 * 3. Call GET_UNIQUE, and check whether the unique name has length zero (by 94 * copypasta from drm 1.0 times where a set unique name meant that the driver 98 * _not_ return a unique string when SET_VERSION hasn't been called yet, 99 * otherwise libdrm breaks. Even when that unique string can't ever change, and 115 * Copies the bus id from drm_device::unique into user space. 126 if (copy_to_user(u->unique, master->unique, maste in drm_getunique() [all...] |
H A D | drm_pci.c | 115 master->unique = kasprintf(GFP_KERNEL, "pci:%04x:%02x:%02x.%d", in drm_pci_set_busid() 120 if (!master->unique) in drm_pci_set_busid() 123 master->unique_len = strlen(master->unique); in drm_pci_set_busid()
|
/kernel/linux/linux-6.6/drivers/gpu/drm/ |
H A D | drm_ioctl.c | 77 * side-effect this fills out the unique name in the master structure. 78 * 2. Call GET_UNIQUE to read out the unique name from the master structure, 86 * means the unique name for the master node just opening is _not_ filled 90 * 3. Call GET_UNIQUE, and check whether the unique name has length zero (by 93 * copypasta from drm 1.0 times where a set unique name meant that the driver 97 * _not_ return a unique string when SET_VERSION hasn't been called yet, 98 * otherwise libdrm breaks. Even when that unique string can't ever change, and 114 * Copies the bus id from drm_device::unique into user space. 125 if (copy_to_user(u->unique, master->unique, maste in drm_getunique() [all...] |
H A D | drm_pci.c | 63 master->unique = kasprintf(GFP_KERNEL, "pci:%04x:%02x:%02x.%d", in drm_pci_set_busid() 68 if (!master->unique) in drm_pci_set_busid() 71 master->unique_len = strlen(master->unique); in drm_pci_set_busid()
|
/kernel/linux/linux-6.6/fs/afs/ |
H A D | fsclient.c | 27 fid->unique = ntohl(*bp++); in xdr_decode_AFSFid() 291 bp[3] = htonl(vp->fid.unique); in afs_fs_fetch_status() 439 bp[3] = htonl(vp->fid.unique); in afs_fs_fetch_data64() 475 bp[3] = htonl(vp->fid.unique); in afs_fs_fetch_data() 547 *bp++ = htonl(dvp->fid.unique); in afs_fs_create_file() 600 *bp++ = htonl(dvp->fid.unique); in afs_fs_make_dir() 679 *bp++ = htonl(dvp->fid.unique); in afs_fs_remove_file() 726 *bp++ = htonl(dvp->fid.unique); in afs_fs_remove_dir() 803 *bp++ = htonl(dvp->fid.unique); in afs_fs_link() 813 *bp++ = htonl(vp->fid.unique); in afs_fs_link() [all...] |
H A D | inode.c | 45 vnode->fid.unique); in dump_vnode() 50 parent_vnode->fid.unique); in dump_vnode() 76 vp->fid.vid, vp->fid.vnode, vp->fid.unique, in afs_inode_init_from_status() 175 vp->fid.vid, vp->fid.vnode, vp->fid.unique, in afs_apply_status() 184 vnode->fid.unique, in afs_apply_status() 359 vnode->fid.vid, vnode->fid.vnode, vnode->fid.unique, in afs_fetch_status() 388 fid->unique == vnode->fid.unique); in afs_ilookup5_test_by_fid() 418 inode->i_generation = vnode->fid.unique; in afs_iget5_set() 430 __be32 unique; in afs_get_inode_cache() member [all...] |
H A D | dynroot.c | 37 inode->i_generation = fid->unique; in afs_iget5_pseudo_set() 58 fid.unique = 1; in afs_iget_pseudo_dir() 61 fid.unique = 0; in afs_iget_pseudo_dir() 72 inode, inode->i_ino, fid.vid, fid.vnode, fid.unique); in afs_iget_pseudo_dir()
|
H A D | callback.c | 56 * Unfortunately, UUIDs are not guaranteed unique. 155 if (fid->vnode == 0 && fid->unique == 0) { in afs_break_one_callback() 202 cbb->fid.unique); in afs_break_some_callbacks()
|
/kernel/linux/linux-6.6/drivers/accel/ |
H A D | drm_accel.c | 66 if (master && master->unique) in accel_name_info() 67 seq_printf(m, " master=%s", master->unique); in accel_name_info() 68 if (dev->unique) in accel_name_info() 69 seq_printf(m, " unique=%s", dev->unique); in accel_name_info()
|
/kernel/linux/linux-5.10/include/linux/ |
H A D | elfnote.h | 69 * unique symbols. 72 #define _ELFNOTE(size, name, unique, type, desc) \ 79 } _ELFNOTE_PASTE(_note_, unique) \
|
/kernel/linux/linux-6.6/include/linux/ |
H A D | elfnote.h | 69 * unique symbols. 72 #define _ELFNOTE(size, name, unique, type, desc) \ 79 } _ELFNOTE_PASTE(_note_, unique) \
|
/kernel/linux/linux-5.10/fs/coda/ |
H A D | psdev.c | 102 /* make sure there is enough to copy out the (opcode, unique) values */ in coda_psdev_write() 116 hdr.opcode, hdr.unique); in coda_psdev_write() 122 hdr.opcode, hdr.unique); in coda_psdev_write() 154 if (tmp->uc_unique == hdr.unique) { in coda_psdev_write() 164 __func__, hdr.opcode, hdr.unique); in coda_psdev_write() 173 hdr.opcode, hdr.unique); in coda_psdev_write()
|
/kernel/linux/linux-6.6/fs/coda/ |
H A D | psdev.c | 102 /* make sure there is enough to copy out the (opcode, unique) values */ in coda_psdev_write() 116 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()
|
/kernel/linux/linux-5.10/tools/testing/selftests/tpm2/ |
H A D | tpm2.py | 297 (len(self.auth_policy), len(self.parameters), len(self.unique)) 301 unique=bytes()): 307 self.unique = unique 317 len(self.unique), 318 self.unique)
|
/kernel/linux/linux-5.10/fs/fuse/ |
H A D | dev.c | 202 static unsigned int fuse_req_hash(u64 unique) in fuse_req_hash() argument 204 return hash_long(unique & ~FUSE_INT_REQ_BIT, FUSE_PQ_HASH_BITS); in fuse_req_hash() 267 req->in.h.unique = fuse_get_unique(fiq); in flush_bg_queue() 424 req->in.h.unique = fuse_get_unique(fiq); in __fuse_request_send() 586 struct fuse_args *args, u64 unique) in fuse_simple_notify_reply() 597 req->in.h.unique = unique; in fuse_simple_notify_reply() 1073 ih.unique = (req->in.h.unique | FUSE_INT_REQ_BIT); 1074 arg.unique 585 fuse_simple_notify_reply(struct fuse_mount *fm, struct fuse_args *args, u64 unique) fuse_simple_notify_reply() argument 1821 request_find(struct fuse_pqueue *fpq, u64 unique) request_find() argument [all...] |
/kernel/linux/linux-6.6/fs/fuse/ |
H A D | dev.c | 202 static unsigned int fuse_req_hash(u64 unique) in fuse_req_hash() argument 204 return hash_long(unique & ~FUSE_INT_REQ_BIT, FUSE_PQ_HASH_BITS); in fuse_req_hash() 267 req->in.h.unique = fuse_get_unique(fiq); in flush_bg_queue() 420 req->in.h.unique = fuse_get_unique(fiq); in __fuse_request_send() 580 struct fuse_args *args, u64 unique) in fuse_simple_notify_reply() 591 req->in.h.unique = unique; in fuse_simple_notify_reply() 1064 ih.unique = (req->in.h.unique | FUSE_INT_REQ_BIT); 1065 arg.unique 579 fuse_simple_notify_reply(struct fuse_mount *fm, struct fuse_args *args, u64 unique) fuse_simple_notify_reply() argument 1810 request_find(struct fuse_pqueue *fpq, u64 unique) request_find() argument [all...] |
/kernel/linux/linux-5.10/arch/alpha/kernel/ |
H A D | process.c | 225 current_thread_info()->pcb.unique = 0; in flush_thread() 269 childti->pcb.unique = tls; in copy_thread() 328 dest[32] = ti->pcb.unique; in dump_elf_thread()
|
/kernel/linux/linux-6.6/arch/alpha/kernel/ |
H A D | process.c | 226 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()
|