| /Linux-v5.4/arch/powerpc/platforms/powernv/ |
| D | pci-cxl.c | 87 int i, hwirq, try; in pnv_cxl_alloc_hwirq_ranges() local 93 try = num; in pnv_cxl_alloc_hwirq_ranges() 94 while (try) { in pnv_cxl_alloc_hwirq_ranges() 95 hwirq = msi_bitmap_alloc_hwirqs(&phb->msi_bmp, try); in pnv_cxl_alloc_hwirq_ranges() 98 try /= 2; in pnv_cxl_alloc_hwirq_ranges() 100 if (!try) in pnv_cxl_alloc_hwirq_ranges() 104 irqs->range[i] = try; in pnv_cxl_alloc_hwirq_ranges() 107 num -= try; in pnv_cxl_alloc_hwirq_ranges()
|
| /Linux-v5.4/drivers/pcmcia/ |
| D | rsrc_iodyn.c | 107 unsigned int try; in iodyn_find_io() local 132 try = res->end + 1; in iodyn_find_io() 133 if ((*base == 0) || (*base == try)) { in iodyn_find_io() 137 *base = try; in iodyn_find_io() 144 try = res->start - num; in iodyn_find_io() 145 if ((*base == 0) || (*base == try)) { in iodyn_find_io() 150 *base = try; in iodyn_find_io()
|
| /Linux-v5.4/drivers/phy/broadcom/ |
| D | phy-brcm-sata.c | 297 int try; in brcm_ns2_sata_init() local 337 try = 50; in brcm_ns2_sata_init() 338 while (try) { in brcm_ns2_sata_init() 344 try--; in brcm_ns2_sata_init() 346 if (!try) { in brcm_ns2_sata_init() 363 unsigned int val, try; in brcm_nsp_sata_init() local 405 try = 50; in brcm_nsp_sata_init() 406 while (--try) { in brcm_nsp_sata_init() 413 if (!try) { in brcm_nsp_sata_init() 437 unsigned int val, try; in brcm_sr_sata_init() local [all …]
|
| /Linux-v5.4/net/dccp/ccids/lib/ |
| D | tfrc_equation.c | 593 u32 try, low = 0, high = TFRC_CALC_X_ARRSIZE - 1; in tfrc_binsearch() local 596 try = (low + high) / 2; in tfrc_binsearch() 597 if (fval <= tfrc_calc_x_lookup[try][small]) in tfrc_binsearch() 598 high = try; in tfrc_binsearch() 600 low = try + 1; in tfrc_binsearch()
|
| /Linux-v5.4/Documentation/power/ |
| D | tricks.rst | 7 If you want to trick swsusp/S3 into working, you might want to try: 20 want to try vesafb later] 22 * try running as few processes as possible, preferably go to single 28 When you make it work, try to find out what exactly was it that broke
|
| D | basic-pm-debugging.rst | 10 To check if hibernation works, you can try to hibernate in the "reboot" mode:: 23 fails to hibernate or resume in the "reboot" mode, you should try the 86 Then, the kernel will try to freeze processes, suspend devices, wait a few 105 should try the test modes starting from "freezer", through "devices", "platform" 133 with these drivers compiled as modules). You may also try to use some special 138 of hibernation is not likely to work. You can try the "shutdown" mode, but that 143 should be reported. In that case you can also try to switch the nonboot CPUs 164 can try to compile more drivers as modules, so that they can be tested 169 unload n/2 of the modules and try again (that would probably involve rebooting 172 load n/2 modules more and try again. [all …]
|
| /Linux-v5.4/tools/perf/Documentation/ |
| D | tips.txt | 1 For a higher level overview, try: perf report --sort comm,dso 22 If you have debuginfo enabled, try: perf report -s sym,srcline 23 For memory address profiling, try: perf mem record / perf mem report 24 For tracepoint events, try: perf report -s trace_fields 30 If you prefer Intel style assembly, try: perf annotate -M intel 31 For hierarchical output, try: perf report --hierarchy
|
| /Linux-v5.4/include/linux/ |
| D | lockdep.h | 517 #define LOCK_CONTENDED(_lock, try, lock) \ argument 519 if (!try(_lock)) { \ 526 #define LOCK_CONTENDED_RETURN(_lock, try, lock) \ argument 529 if (!try(_lock)) { \ 543 #define LOCK_CONTENDED(_lock, try, lock) \ argument 546 #define LOCK_CONTENDED_RETURN(_lock, try, lock) \ argument 558 #define LOCK_CONTENDED_FLAGS(_lock, try, lock, lockfl, flags) \ argument 559 LOCK_CONTENDED((_lock), (try), (lock)) 563 #define LOCK_CONTENDED_FLAGS(_lock, try, lock, lockfl, flags) \ argument
|
| /Linux-v5.4/drivers/misc/sgi-gru/ |
| D | grukdump.c | 115 int try, cch_locked, cbrcnt = 0, dsrcnt = 0, bytes = 0, ret = 0; in gru_dump_context() local 121 for (try = 0; try < CCH_LOCK_ATTEMPTS; try++) { in gru_dump_context()
|
| /Linux-v5.4/drivers/bluetooth/ |
| D | bt3c_cs.c | 646 int *try = priv_data; in bt3c_check_config() local 648 if (!try) in bt3c_check_config() 687 unsigned long try; in bt3c_config() local 692 for (try = 0; try < 2; try++) in bt3c_config() 693 if (!pcmcia_loop_config(link, bt3c_check_config, (void *) try)) in bt3c_config()
|
| /Linux-v5.4/drivers/rtc/ |
| D | rtc-rv8803.c | 71 int try = RV8803_I2C_TRY_COUNT; in rv8803_read_reg() local 80 while ((ret == -ENXIO || ret == -EIO) && --try); in rv8803_read_reg() 90 int try = RV8803_I2C_TRY_COUNT; in rv8803_read_regs() local 95 while ((ret == -ENXIO || ret == -EIO) && --try); in rv8803_read_regs() 108 int try = RV8803_I2C_TRY_COUNT; in rv8803_write_reg() local 113 while ((ret == -ENXIO || ret == -EIO) && --try); in rv8803_write_reg() 123 int try = RV8803_I2C_TRY_COUNT; in rv8803_write_regs() local 129 while ((ret == -ENXIO || ret == -EIO) && --try); in rv8803_write_regs()
|
| /Linux-v5.4/drivers/tty/serial/8250/ |
| D | serial_cs.c | 400 int *try = priv_data; in simple_config_check() local 405 if ((*try & 0x1) == 0) in simple_config_check() 408 if (p_dev->resource[0]->end != size_table[(*try >> 1)]) in simple_config_check() 443 int i = -ENODEV, try; in simple_config() local 450 for (try = 0; try < 4; try++) in simple_config() 451 if (!pcmcia_loop_config(link, simple_config_check, &try)) in simple_config()
|
| /Linux-v5.4/scripts/ |
| D | Kbuild.include | 79 # would try to directly execute the shell builtin 'command'. This workaround 88 # try-run 89 # Usage: option = $(call try-run, $(CC)...-o "$$TMP",option-ok,otherwise) 92 try-run = $(shell set -e; \ 104 as-option = $(call try-run,\ 110 as-instr = $(call try-run,\ 115 __cc-option = $(call try-run,\ 130 cc-option-yn = $(call try-run,\ 135 cc-disable-warning = $(call try-run,\ 144 ld-option = $(call try-run, $(LD) $(KBUILD_LDFLAGS) $(1) -v,$(1),$(2),$(3))
|
| /Linux-v5.4/kernel/locking/ |
| D | percpu-rwsem.c | 44 int __percpu_down_read(struct percpu_rw_semaphore *sem, int try) in __percpu_down_read() argument 76 if (try) in __percpu_down_read()
|
| /Linux-v5.4/arch/arm/include/debug/ |
| D | sa1100.S | 32 @ if Ser3 is inactive, then try Ser1 37 @ if Ser1 is inactive, then try Ser2
|
| /Linux-v5.4/drivers/media/usb/dvb-usb/ |
| D | gp8psk.c | 33 int ret = 0,try = 0; in gp8psk_usb_in_op() local 41 while (ret >= 0 && ret != blen && try < 3) { in gp8psk_usb_in_op() 48 deb_info("reading number %d (ret: %d)\n",try,ret); in gp8psk_usb_in_op() 49 try++; in gp8psk_usb_in_op()
|
| /Linux-v5.4/arch/arm64/kernel/vdso32/ |
| D | Makefile | 18 cc32-option = $(call try-run,\ 20 cc32-disable-warning = $(call try-run,\ 22 cc32-ldoption = $(call try-run,\ 24 cc32-as-instr = $(call try-run,\
|
| /Linux-v5.4/drivers/firewire/ |
| D | core-iso.c | 214 int try, new, old = allocate ? BANDWIDTH_AVAILABLE_INITIAL : 0; in manage_bandwidth() local 222 for (try = 0; try < 5; try++) { in manage_bandwidth()
|
| /Linux-v5.4/drivers/char/tpm/ |
| D | tpm1-cmd.c | 726 unsigned int try; in tpm1_pm_suspend() local 739 for (try = 0; try < TPM_RETRY; try++) { in tpm1_pm_suspend() 761 else if (try > 0) in tpm1_pm_suspend() 763 try * TPM_TIMEOUT_RETRY); in tpm1_pm_suspend()
|
| /Linux-v5.4/tools/perf/util/ |
| D | record.c | 66 const char *try[] = {"cycles:u", "instructions:u", "cpu-clock:u", NULL}; in perf_probe_api() local 77 ret = perf_do_probe_api(fn, cpu, try[i++]); in perf_probe_api() 80 } while (ret == -EAGAIN && try[i]); in perf_probe_api()
|
| /Linux-v5.4/drivers/ntb/test/ |
| D | ntb_perf.c | 258 int try; in perf_spad_cmd_send() local 270 for (try = 0; try < MSG_TRIES; try++) { in perf_spad_cmd_send() 298 return try < MSG_TRIES ? 0 : -EAGAIN; in perf_spad_cmd_send() 349 int try, ret; in perf_msg_cmd_send() local 362 for (try = 0; try < MSG_TRIES; try++) { in perf_msg_cmd_send() 387 return try < MSG_TRIES ? 0 : -EAGAIN; in perf_msg_cmd_send() 784 int try = 0, ret = 0; in perf_copy_chunk() local 823 } while (!tx && (try++ < DMA_TRIES)); in perf_copy_chunk()
|
| /Linux-v5.4/init/ |
| D | do_mounts.c | 474 int try, err; in mount_nfs_root() local 486 for (try = 1; ; try++) { in mount_nfs_root() 491 if (try > NFSROOT_RETRY_MAX) in mount_nfs_root()
|
| /Linux-v5.4/Documentation/media/uapi/v4l/ |
| D | vidioc-subdev-enum-frame-size.rst | 63 :ref:`VIDIOC_SUBDEV_S_FMT <VIDIOC_SUBDEV_G_FMT>` ioctl to try the 66 Available frame sizes may depend on the current 'try' formats at other 70 information about try formats.
|
| /Linux-v5.4/tools/testing/selftests/kvm/ |
| D | Makefile | 51 no-pie-option := $(call try-run, echo 'int main() { return 0; }' | \ 55 pgste-option = $(call try-run, echo 'int main() { return 0; }' | \
|
| /Linux-v5.4/drivers/block/ |
| D | swim.c | 385 int try; in swim_track00() local 389 for (try = 0; try < 100; try++) { in swim_track00() 499 int i, try; in floppy_read_sectors() local 510 try = 5; in floppy_read_sectors() 514 if (try-- == 0) in floppy_read_sectors()
|