| /kernel/linux/linux-5.10/drivers/md/ |
| H A D | dm-path-selector.c | 20 struct path_selector_type pst; member 24 #define pst_to_psi(__pst) container_of((__pst), struct ps_internal, pst) 34 if (!strcmp(name, psi->pst.name)) in __find_path_selector_type() 47 if (psi && !try_module_get(psi->pst.module)) in get_path_selector() 67 return psi ? &psi->pst : NULL; in dm_get_path_selector() 70 void dm_put_path_selector(struct path_selector_type *pst) in dm_put_path_selector() argument 74 if (!pst) in dm_put_path_selector() 78 psi = __find_path_selector_type(pst->name); in dm_put_path_selector() 82 module_put(psi->pst.module); in dm_put_path_selector() 87 static struct ps_internal *_alloc_path_selector(struct path_selector_type *pst) in _alloc_path_selector() argument 97 dm_register_path_selector(struct path_selector_type *pst) dm_register_path_selector() argument 118 dm_unregister_path_selector(struct path_selector_type *pst) dm_unregister_path_selector() argument [all...] |
| H A D | dm-path-selector.h | 90 void dm_put_path_selector(struct path_selector_type *pst);
|
| H A D | dm-mpath.c | 838 struct path_selector_type *pst; in parse_path_selector() local 845 pst = dm_get_path_selector(dm_shift_arg(as)); in parse_path_selector() 846 if (!pst) { in parse_path_selector() 853 dm_put_path_selector(pst); in parse_path_selector() 857 r = pst->create(&pg->ps, ps_argc, as->argv); in parse_path_selector() 859 dm_put_path_selector(pst); in parse_path_selector() 864 pg->ps.type = pst; in parse_path_selector()
|
| /kernel/linux/linux-6.6/drivers/md/ |
| H A D | dm-path-selector.c | 21 struct path_selector_type pst; member 25 #define pst_to_psi(__pst) container_of((__pst), struct ps_internal, pst) 35 if (!strcmp(name, psi->pst.name)) in __find_path_selector_type() 48 if (psi && !try_module_get(psi->pst.module)) in get_path_selector() 68 return psi ? &psi->pst : NULL; in dm_get_path_selector() 71 void dm_put_path_selector(struct path_selector_type *pst) in dm_put_path_selector() argument 75 if (!pst) in dm_put_path_selector() 79 psi = __find_path_selector_type(pst->name); in dm_put_path_selector() 83 module_put(psi->pst.module); in dm_put_path_selector() 88 static struct ps_internal *_alloc_path_selector(struct path_selector_type *pst) in _alloc_path_selector() argument 98 dm_register_path_selector(struct path_selector_type *pst) dm_register_path_selector() argument 120 dm_unregister_path_selector(struct path_selector_type *pst) dm_unregister_path_selector() argument [all...] |
| H A D | dm-path-selector.h | 105 void dm_put_path_selector(struct path_selector_type *pst);
|
| /kernel/linux/linux-5.10/tools/power/cpupower/debug/i386/ |
| H A D | dump_psb.c | 86 struct pst_header *pst; in decode_psb() local 93 printf("PSB version: %hhx flags: %hhx settling time %hhuus res1 %hhx num pst %hhu\n", in decode_psb() 109 printf("Overriding number of pst :%d\n", numpst); in decode_psb() 112 pst = (struct pst_header*) p; in decode_psb() 115 if (relevant!= pst->cpuid) in decode_psb() 119 printf(" PST %d cpuid %.3x fsb %hhu mfid %hhx svid %hhx numberstates %hhu\n", in decode_psb() 121 pst->cpuid, in decode_psb() 122 pst->fsb, in decode_psb() 123 pst->maxfid, in decode_psb() 124 pst in decode_psb() [all...] |
| /kernel/linux/linux-6.6/tools/power/cpupower/debug/i386/ |
| H A D | dump_psb.c | 84 struct pst_header *pst; in decode_psb() local 91 printf("PSB version: %hhx flags: %hhx settling time %hhuus res1 %hhx num pst %hhu\n", in decode_psb() 107 printf("Overriding number of pst :%d\n", numpst); in decode_psb() 110 pst = (struct pst_header*) p; in decode_psb() 113 if (relevant!= pst->cpuid) in decode_psb() 117 printf(" PST %d cpuid %.3x fsb %hhu mfid %hhx svid %hhx numberstates %hhu\n", in decode_psb() 119 pst->cpuid, in decode_psb() 120 pst->fsb, in decode_psb() 121 pst->maxfid, in decode_psb() 122 pst in decode_psb() [all...] |
| /kernel/linux/linux-5.10/drivers/cpufreq/ |
| H A D | powernow-k7.c | 171 static int get_ranges(unsigned char *pst) in get_ranges() argument 183 fid = *pst++; in get_ranges() 202 vid = *pst++; in get_ranges() 440 static void print_pst_entry(struct pst_s *pst, unsigned int j) in print_pst_entry() argument 442 pr_debug("PST:%d (@%p)\n", j, pst); in print_pst_entry() 444 pst->cpuid, pst->fsbspeed, pst->maxfid, pst in print_pst_entry() 450 struct pst_s *pst; powernow_decode_bios() local [all...] |
| H A D | powernow-k8.c | 492 static int check_pst_table(struct powernow_k8_data *data, struct pst_s *pst, in check_pst_table() argument 499 if (pst[j].vid > LEAST_VID) { in check_pst_table() 501 pst[j].vid); in check_pst_table() 504 if (pst[j].vid < data->rvo) { in check_pst_table() 509 if (pst[j].vid < maxvid + data->rvo) { in check_pst_table() 514 if (pst[j].fid > MAX_FID) { in check_pst_table() 518 if (j && (pst[j].fid < HI_FID_TABLE_BOTTOM)) { in check_pst_table() 521 pst[j].fid); in check_pst_table() 524 if (pst[j].fid < lastfid) in check_pst_table() 525 lastfid = pst[ in check_pst_table() 559 fill_powernow_table(struct powernow_k8_data *data, struct pst_s *pst, u8 maxvid) fill_powernow_table() argument [all...] |
| H A D | powernow-k8.h | 152 * If the data in the PSB / PST is wrong, then this driver will program the
|
| /kernel/linux/linux-6.6/drivers/cpufreq/ |
| H A D | powernow-k7.c | 171 static int get_ranges(unsigned char *pst) in get_ranges() argument 183 fid = *pst++; in get_ranges() 202 vid = *pst++; in get_ranges() 440 static void print_pst_entry(struct pst_s *pst, unsigned int j) in print_pst_entry() argument 442 pr_debug("PST:%d (@%p)\n", j, pst); in print_pst_entry() 444 pst->cpuid, pst->fsbspeed, pst->maxfid, pst in print_pst_entry() 450 struct pst_s *pst; powernow_decode_bios() local [all...] |
| H A D | powernow-k8.c | 492 static int check_pst_table(struct powernow_k8_data *data, struct pst_s *pst, in check_pst_table() argument 499 if (pst[j].vid > LEAST_VID) { in check_pst_table() 501 pst[j].vid); in check_pst_table() 504 if (pst[j].vid < data->rvo) { in check_pst_table() 509 if (pst[j].vid < maxvid + data->rvo) { in check_pst_table() 514 if (pst[j].fid > MAX_FID) { in check_pst_table() 518 if (j && (pst[j].fid < HI_FID_TABLE_BOTTOM)) { in check_pst_table() 521 pst[j].fid); in check_pst_table() 524 if (pst[j].fid < lastfid) in check_pst_table() 525 lastfid = pst[ in check_pst_table() 559 fill_powernow_table(struct powernow_k8_data *data, struct pst_s *pst, u8 maxvid) fill_powernow_table() argument [all...] |
| H A D | powernow-k8.h | 152 * If the data in the PSB / PST is wrong, then this driver will program the
|
| /kernel/linux/linux-5.10/Documentation/scsi/ |
| H A D | ChangeLog.megaraid_sas | 1 Release Date : Thu. Jun 19, 2014 17:00:00 PST 2014 - 15 Release Date : Mon. Mar 10, 2014 17:00:00 PST 2014 - 28 Release Date : Sat. Aug 31, 2013 17:00:00 PST 2013 - 38 Release Date : Wed. May 15, 2013 17:00:00 PST 2013 - 60 Release Date : Sat. Feb 9, 2013 17:00:00 PST 2013 - 69 Release Date : Mon. Oct 1, 2012 17:00:00 PST 2012 - 82 Release Date : Tue. Jun 17, 2012 17:00:00 PST 2012 - 92 Release Date : Mon. Mar 19, 2012 17:00:00 PST 2012 - 100 Release Date : Fri. Jan 6, 2012 17:00:00 PST 2010 - 110 Release Date : Wed. Oct 5, 2011 17:00:00 PST 201 [all...] |
| /kernel/linux/linux-6.6/Documentation/scsi/ |
| H A D | ChangeLog.megaraid_sas | 1 Release Date : Thu. Jun 19, 2014 17:00:00 PST 2014 - 15 Release Date : Mon. Mar 10, 2014 17:00:00 PST 2014 - 28 Release Date : Sat. Aug 31, 2013 17:00:00 PST 2013 - 38 Release Date : Wed. May 15, 2013 17:00:00 PST 2013 - 60 Release Date : Sat. Feb 9, 2013 17:00:00 PST 2013 - 69 Release Date : Mon. Oct 1, 2012 17:00:00 PST 2012 - 82 Release Date : Tue. Jun 17, 2012 17:00:00 PST 2012 - 92 Release Date : Mon. Mar 19, 2012 17:00:00 PST 2012 - 100 Release Date : Fri. Jan 6, 2012 17:00:00 PST 2010 - 110 Release Date : Wed. Oct 5, 2011 17:00:00 PST 201 [all...] |
| /kernel/linux/linux-5.10/arch/arm/mach-tegra/ |
| H A D | iomap.h | 114 #define IO_TO_VIRT_XLATE(p, pst, vst) (((p) - (pst) + (vst)))
|
| /kernel/linux/linux-6.6/arch/arm/mach-tegra/ |
| H A D | iomap.h | 114 #define IO_TO_VIRT_XLATE(p, pst, vst) (((p) - (pst) + (vst)))
|
| /kernel/linux/linux-5.10/include/linux/ |
| H A D | dmar.h | 201 pst : 1, /* 15 */ member 263 dst->pst = src->pst; in dmar_copy_shared_irte()
|
| /kernel/linux/linux-6.6/include/linux/ |
| H A D | dmar.h | 212 pst : 1, /* 15 */ member 279 dst->pst = src->pst; in dmar_copy_shared_irte()
|
| /kernel/linux/linux-6.6/Documentation/mm/damon/ |
| H A D | maintainer-profile.rst | 51 Mon-Fri) in PST. The response to patches will occasionally be slow. Do not
|
| /kernel/linux/linux-5.10/drivers/w1/masters/ |
| H A D | mxc_w1.c | 55 /* PST bit is valid after the RPP bit is self-cleared */ in mxc_w1_ds2_reset_bus()
|
| /kernel/linux/linux-6.6/drivers/w1/masters/ |
| H A D | mxc_w1.c | 55 /* PST bit is valid after the RPP bit is self-cleared */ in mxc_w1_ds2_reset_bus()
|
| /kernel/linux/linux-5.10/drivers/power/supply/ |
| H A D | power_supply_core.c | 66 struct power_supply *pst = dev_get_drvdata(dev); in __power_supply_changed_work() local 68 if (__power_supply_is_supplied_by(psy, pst)) { in __power_supply_changed_work() 69 if (pst->desc->external_power_changed) in __power_supply_changed_work() 70 pst->desc->external_power_changed(pst); in __power_supply_changed_work()
|
| /kernel/linux/linux-6.6/drivers/power/supply/ |
| H A D | power_supply_core.c | 68 struct power_supply *pst = dev_get_drvdata(dev); in __power_supply_changed_work() local 70 if (__power_supply_is_supplied_by(psy, pst)) { in __power_supply_changed_work() 71 if (pst->desc->external_power_changed) in __power_supply_changed_work() 72 pst->desc->external_power_changed(pst); in __power_supply_changed_work()
|
| /kernel/linux/linux-5.10/sound/pci/ |
| H A D | rme96.c | 3 * ALSA driver for RME Digi96, Digi96/8 and Digi96/8 PRO/PAD/PST audio 31 MODULE_DESCRIPTION("RME Digi96, Digi96/8, Digi96/8 PRO, Digi96/8 PST, " 37 "{RME,Digi96/8 PST}," 1912 /* PST */ in snd_rme96_info_inputtype_control() 1945 /* for handling PST case, (INPUT_ANALOG is moved to INPUT_XLR */ in snd_rme96_get_inputtype_control() 1993 /* special case for PST */ in snd_rme96_put_inputtype_control() 2495 strcpy(card->shortname, "RME Digi96/8 PST"); in snd_rme96_probe()
|