/Linux-v4.19/arch/powerpc/platforms/powernv/ |
D | pci-cxl.c | 91 int i, hwirq, try; in pnv_cxl_alloc_hwirq_ranges() local 97 try = num; in pnv_cxl_alloc_hwirq_ranges() 98 while (try) { in pnv_cxl_alloc_hwirq_ranges() 99 hwirq = msi_bitmap_alloc_hwirqs(&phb->msi_bmp, try); in pnv_cxl_alloc_hwirq_ranges() 102 try /= 2; in pnv_cxl_alloc_hwirq_ranges() 104 if (!try) in pnv_cxl_alloc_hwirq_ranges() 108 irqs->range[i] = try; in pnv_cxl_alloc_hwirq_ranges() 111 num -= try; in pnv_cxl_alloc_hwirq_ranges()
|
/Linux-v4.19/drivers/pcmcia/ |
D | rsrc_iodyn.c | 110 unsigned int try; in iodyn_find_io() local 135 try = res->end + 1; in iodyn_find_io() 136 if ((*base == 0) || (*base == try)) { in iodyn_find_io() 140 *base = try; in iodyn_find_io() 147 try = res->start - num; in iodyn_find_io() 148 if ((*base == 0) || (*base == try)) { in iodyn_find_io() 153 *base = try; in iodyn_find_io()
|
/Linux-v4.19/net/dccp/ccids/lib/ |
D | tfrc_equation.c | 597 u32 try, low = 0, high = TFRC_CALC_X_ARRSIZE - 1; in tfrc_binsearch() local 600 try = (low + high) / 2; in tfrc_binsearch() 601 if (fval <= tfrc_calc_x_lookup[try][small]) in tfrc_binsearch() 602 high = try; in tfrc_binsearch() 604 low = try + 1; in tfrc_binsearch()
|
/Linux-v4.19/Documentation/power/ |
D | tricks.txt | 5 If you want to trick swsusp/S3 into working, you might want to try: 18 want to try vesafb later] 20 * try running as few processes as possible, preferably go to single 26 When you make it work, try to find out what exactly was it that broke
|
D | basic-pm-debugging.txt | 6 To check if hibernation works, you can try to hibernate in the "reboot" mode: 19 to hibernate or resume in the "reboot" mode, you should try the "platform" mode: 78 Then, the kernel will try to freeze processes, suspend devices, wait a few 97 should try the test modes starting from "freezer", through "devices", "platform" 124 with these drivers compiled as modules). You may also try to use some special 129 of hibernation is not likely to work. You can try the "shutdown" mode, but that 134 should be reported. In that case you can also try to switch the nonboot CPUs 154 can try to compile more drivers as modules, so that they can be tested 159 unload n/2 of the modules and try again (that would probably involve rebooting 162 load n/2 modules more and try again. [all …]
|
/Linux-v4.19/drivers/phy/broadcom/ |
D | phy-brcm-sata.c | 296 int try; in brcm_ns2_sata_init() local 336 try = 50; in brcm_ns2_sata_init() 337 while (try) { in brcm_ns2_sata_init() 343 try--; in brcm_ns2_sata_init() 345 if (!try) { in brcm_ns2_sata_init() 362 unsigned int val, try; in brcm_nsp_sata_init() local 404 try = 50; in brcm_nsp_sata_init() 405 while (--try) { in brcm_nsp_sata_init() 412 if (!try) { in brcm_nsp_sata_init() 436 unsigned int val, try; in brcm_sr_sata_init() local [all …]
|
/Linux-v4.19/tools/perf/Documentation/ |
D | tips.txt | 1 For a higher level overview, try: perf report --sort comm,dso 21 If you have debuginfo enabled, try: perf report -s sym,srcline 22 For memory address profiling, try: perf mem record / perf mem report 23 For tracepoint events, try: perf report -s trace_fields 29 If you prefer Intel style assembly, try: perf annotate -M intel 30 For hierarchical output, try: perf report --hierarchy
|
/Linux-v4.19/include/linux/ |
D | lockdep.h | 484 #define LOCK_CONTENDED(_lock, try, lock) \ argument 486 if (!try(_lock)) { \ 493 #define LOCK_CONTENDED_RETURN(_lock, try, lock) \ argument 496 if (!try(_lock)) { \ 510 #define LOCK_CONTENDED(_lock, try, lock) \ argument 513 #define LOCK_CONTENDED_RETURN(_lock, try, lock) \ argument 525 #define LOCK_CONTENDED_FLAGS(_lock, try, lock, lockfl, flags) \ argument 526 LOCK_CONTENDED((_lock), (try), (lock)) 530 #define LOCK_CONTENDED_FLAGS(_lock, try, lock, lockfl, flags) \ argument
|
/Linux-v4.19/drivers/misc/sgi-gru/ |
D | grukdump.c | 125 int try, cch_locked, cbrcnt = 0, dsrcnt = 0, bytes = 0, ret = 0; in gru_dump_context() local 131 for (try = 0; try < CCH_LOCK_ATTEMPTS; try++) { in gru_dump_context()
|
/Linux-v4.19/drivers/bluetooth/ |
D | bt3c_cs.c | 643 int *try = priv_data; in bt3c_check_config() local 645 if (!try) in bt3c_check_config() 684 unsigned long try; in bt3c_config() local 689 for (try = 0; try < 2; try++) in bt3c_config() 690 if (!pcmcia_loop_config(link, bt3c_check_config, (void *) try)) in bt3c_config()
|
/Linux-v4.19/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-v4.19/drivers/rtc/ |
D | rtc-rv8803.c | 75 int try = RV8803_I2C_TRY_COUNT; in rv8803_read_reg() local 84 while ((ret == -ENXIO || ret == -EIO) && --try); in rv8803_read_reg() 94 int try = RV8803_I2C_TRY_COUNT; in rv8803_read_regs() local 99 while ((ret == -ENXIO || ret == -EIO) && --try); in rv8803_read_regs() 112 int try = RV8803_I2C_TRY_COUNT; in rv8803_write_reg() local 117 while ((ret == -ENXIO || ret == -EIO) && --try); in rv8803_write_reg() 127 int try = RV8803_I2C_TRY_COUNT; in rv8803_write_regs() local 133 while ((ret == -ENXIO || ret == -EIO) && --try); in rv8803_write_regs()
|
/Linux-v4.19/scripts/ |
D | Kbuild.include | 86 # try-run 87 # Usage: option = $(call try-run, $(CC)...-o "$$TMP",option-ok,otherwise) 90 try-run = $(shell set -e; \ 102 as-option = $(call try-run,\ 108 as-instr = $(call try-run,\ 113 __cc-option = $(call try-run,\ 133 cc-option-yn = $(call try-run,\ 138 cc-disable-warning = $(call try-run,\ 158 cc-ldoption = $(call try-run,\ 163 ld-option = $(call try-run, $(LD) $(KBUILD_LDFLAGS) $(1) -v,$(1),$(2),$(3)) [all …]
|
/Linux-v4.19/kernel/locking/ |
D | percpu-rwsem.c | 41 int __percpu_down_read(struct percpu_rw_semaphore *sem, int try) in __percpu_down_read() argument 73 if (try) in __percpu_down_read()
|
/Linux-v4.19/arch/arm/include/debug/ |
D | sa1100.S | 36 @ if Ser3 is inactive, then try Ser1 41 @ if Ser1 is inactive, then try Ser2
|
/Linux-v4.19/drivers/net/wan/ |
D | dscc4.c | 1531 try: in dscc4_tx_irq() 1597 goto try; in dscc4_tx_irq() 1614 goto try; in dscc4_tx_irq() 1620 goto try; in dscc4_tx_irq() 1669 goto try; in dscc4_tx_irq() 1675 goto try; in dscc4_tx_irq() 1691 goto try; in dscc4_tx_irq() 1701 try: in dscc4_rx_irq() 1744 goto try; in dscc4_rx_irq() 1749 goto try; in dscc4_rx_irq() [all …]
|
/Linux-v4.19/drivers/firewire/ |
D | core-iso.c | 238 int try, new, old = allocate ? BANDWIDTH_AVAILABLE_INITIAL : 0; in manage_bandwidth() local 246 for (try = 0; try < 5; try++) { in manage_bandwidth()
|
/Linux-v4.19/drivers/media/usb/dvb-usb/ |
D | gp8psk.c | 36 int ret = 0,try = 0; in gp8psk_usb_in_op() local 44 while (ret >= 0 && ret != blen && try < 3) { in gp8psk_usb_in_op() 51 deb_info("reading number %d (ret: %d)\n",try,ret); in gp8psk_usb_in_op() 52 try++; in gp8psk_usb_in_op()
|
/Linux-v4.19/tools/perf/util/ |
D | record.c | 62 const char *try[] = {"cycles:u", "instructions:u", "cpu-clock:u", NULL}; in perf_probe_api() local 73 ret = perf_do_probe_api(fn, cpu, try[i++]); in perf_probe_api() 76 } while (ret == -EAGAIN && try[i]); in perf_probe_api()
|
/Linux-v4.19/Documentation/media/uapi/v4l/ |
D | vidioc-subdev-enum-frame-size.rst | 56 :ref:`VIDIOC_SUBDEV_S_FMT <VIDIOC_SUBDEV_G_FMT>` ioctl to try the 59 Available frame sizes may depend on the current 'try' formats at other 63 information about try formats.
|
/Linux-v4.19/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() 300 return try < MSG_TRIES ? 0 : -EAGAIN; in perf_spad_cmd_send() 351 int try, ret; in perf_msg_cmd_send() local 364 for (try = 0; try < MSG_TRIES; try++) { in perf_msg_cmd_send() 390 return try < MSG_TRIES ? 0 : -EAGAIN; in perf_msg_cmd_send() 779 int try = 0, ret = 0; in perf_copy_chunk() local 818 } while (!tx && (try++ < DMA_TRIES)); in perf_copy_chunk()
|
/Linux-v4.19/init/ |
D | do_mounts.c | 441 int try, err; in mount_nfs_root() local 453 for (try = 1; ; try++) { in mount_nfs_root() 458 if (try > NFSROOT_RETRY_MAX) in mount_nfs_root()
|
/Linux-v4.19/drivers/block/ |
D | swim.c | 389 int try; in swim_track00() local 393 for (try = 0; try < 100; try++) { in swim_track00() 503 int i, try; in floppy_read_sectors() local 514 try = 5; in floppy_read_sectors() 518 if (try-- == 0) in floppy_read_sectors()
|
/Linux-v4.19/Documentation/cpu-freq/ |
D | amd-powernow.txt | 8 so it is safe to try each driver in turn when in doubt as to 35 The powernow-k7 driver will try to use the PSB support first, and
|
/Linux-v4.19/drivers/staging/media/zoran/ |
D | zoran_card.h | 44 int try);
|