Home
last modified time | relevance | path

Searched refs:slot_nr (Results 1 – 17 of 17) sorted by relevance

/Linux-v4.19/drivers/pci/
Dslot.c209 static struct pci_slot *get_slot(struct pci_bus *parent, int slot_nr) in get_slot() argument
215 if (slot->number == slot_nr) { in get_slot()
261 struct pci_slot *pci_create_slot(struct pci_bus *parent, int slot_nr, in pci_create_slot() argument
272 if (slot_nr == -1) in pci_create_slot()
279 slot = get_slot(parent, slot_nr); in pci_create_slot()
300 slot->number = slot_nr; in pci_create_slot()
320 if (PCI_SLOT(dev->devfn) == slot_nr) in pci_create_slot()
325 slot_nr, pci_slot_name(slot)); in pci_create_slot()
/Linux-v4.19/fs/nfs/
Dnfs4session.c84 u32 slotid = slot->slot_nr; in nfs4_free_slot()
111 slot->slot_nr = slotid; in nfs4_new_slot()
132 if (slot->slot_nr == slotid) in nfs4_find_or_create_slot()
142 u32 slotid = slot->slot_nr; in nfs4_lock_slot()
158 if (nfs4_test_locked_slot(tbl, slot->slot_nr)) in nfs4_try_to_lock_slot()
255 !IS_ERR(ret) ? ret->slot_nr : NFS4_NO_SLOT); in nfs4_alloc_slot()
382 if (slot->slot_nr > tbl->max_slotid) in nfs41_wake_and_assign_slot()
Dnfs4trace.h273 __field(unsigned int, slot_nr)
284 __entry->slot_nr = sr_slot->slot_nr;
299 __entry->slot_nr,
321 __field(unsigned int, slot_nr)
330 __entry->slot_nr = args->csa_slotid;
343 __entry->slot_nr,
359 __field(unsigned int, slot_nr)
367 __entry->slot_nr = sa_slot->slot_nr;
376 __entry->slot_nr,
Dnfs4session.h24 u32 slot_nr; member
Dcallback_proc.c422 if (nfs4_test_locked_slot(tbl, slot->slot_nr)) in validate_seqid()
Dnfs4xdr.c1935 slot->seq_nr, slot->slot_nr, in encode_sequence()
1940 *p++ = cpu_to_be32(slot->slot_nr); in encode_sequence()
5955 if (dummy != res->sr_slot->slot_nr) { in decode_sequence()
Dnfs4proc.c785 slot->slot_nr, in nfs41_sequence_process()
800 if (slot->slot_nr < slot->table->target_highest_slotid) in nfs41_sequence_process()
/Linux-v4.19/drivers/scsi/mvsas/
Dmv_init.c118 int slot_nr; in mvs_free() local
124 slot_nr = MVS_SOC_SLOTS; in mvs_free()
126 slot_nr = MVS_CHIP_SLOT_SZ; in mvs_free()
143 sizeof(*mvi->slot) * slot_nr, in mvs_free()
231 int i = 0, slot_nr; in mvs_alloc() local
235 slot_nr = MVS_SOC_SLOTS; in mvs_alloc()
237 slot_nr = MVS_CHIP_SLOT_SZ; in mvs_alloc()
278 sizeof(*mvi->slot) * slot_nr, in mvs_alloc()
282 memset(mvi->slot, 0, sizeof(*mvi->slot) * slot_nr); in mvs_alloc()
303 mvi->tags_num = slot_nr; in mvs_alloc()
/Linux-v4.19/drivers/ide/
Dide-cd_ioctl.c42 int ide_cdrom_drive_status(struct cdrom_device_info *cdi, int slot_nr) in ide_cdrom_drive_status() argument
49 if (slot_nr != CDSL_CURRENT) in ide_cdrom_drive_status()
90 unsigned int clearing, int slot_nr) in ide_cdrom_check_events_real() argument
95 if (slot_nr == CDSL_CURRENT) { in ide_cdrom_check_events_real()
Dide-cd.h112 unsigned int clearing, int slot_nr);
/Linux-v4.19/kernel/events/
Duprobes.c1282 int slot_nr; in xol_take_insn_slot() local
1285 slot_nr = find_first_zero_bit(area->bitmap, UINSNS_PER_PAGE); in xol_take_insn_slot()
1286 if (slot_nr < UINSNS_PER_PAGE) { in xol_take_insn_slot()
1287 if (!test_and_set_bit(slot_nr, area->bitmap)) in xol_take_insn_slot()
1290 slot_nr = UINSNS_PER_PAGE; in xol_take_insn_slot()
1294 } while (slot_nr >= UINSNS_PER_PAGE); in xol_take_insn_slot()
1296 slot_addr = area->vaddr + (slot_nr * UPROBE_XOL_SLOT_BYTES); in xol_take_insn_slot()
1347 int slot_nr; in xol_free_insn_slot() local
1350 slot_nr = offset / UPROBE_XOL_SLOT_BYTES; in xol_free_insn_slot()
1351 if (slot_nr >= UINSNS_PER_PAGE) in xol_free_insn_slot()
[all …]
/Linux-v4.19/drivers/gpu/drm/nouveau/nvkm/engine/disp/
Dsorgf119.c61 u8 slot, u8 slot_nr, u16 pbn, u16 aligned) in gf119_sor_dp_vcpi() argument
66 nvkm_mask(device, 0x616588 + hoff, 0x00003f3f, (slot_nr << 8) | slot); in gf119_sor_dp_vcpi()
Dior.h74 u8 slot_nr, u16 pbn, u16 aligned);
/Linux-v4.19/drivers/block/paride/
Dpcd.c174 static int pcd_drive_status(struct cdrom_device_info *cdi, int slot_nr);
176 unsigned int clearing, int slot_nr);
517 unsigned int clearing, int slot_nr) in pcd_check_events() argument
604 static int pcd_drive_status(struct cdrom_device_info *cdi, int slot_nr) in pcd_drive_status() argument
/Linux-v4.19/drivers/pci/controller/
Dpci-hyperv.c1477 int slot_nr; in hv_pci_assign_slots() local
1483 slot_nr = PCI_SLOT(wslot_to_devfn(hpdev->desc.win_slot.slot)); in hv_pci_assign_slots()
1485 hpdev->pci_slot = pci_create_slot(hbus->pci_bus, slot_nr, in hv_pci_assign_slots()
/Linux-v4.19/include/linux/
Dpci.h923 struct pci_slot *pci_create_slot(struct pci_bus *parent, int slot_nr,
/Linux-v4.19/Documentation/cdrom/
Dcdrom-standard.tex373 \subsection{$Int\ drive_status(struct\ cdrom_device_info * cdi, int\ slot_nr)$}
379 $slot_nr$ should be ignored. In \cdromh\ the possibilities are listed: