Home
last modified time | relevance | path

Searched refs:try (Results 1 – 25 of 631) sorted by relevance

12345678910>>...26

/linux/scripts/
H A DMakefile.compiler22 try-run = $(shell set -e; \
34 as-option = $(call try-run,\
40 as-instr = $(call try-run,\
45 __cc-option = $(call try-run,\
76 ld-option = $(call try-run, $(LD) $(KBUILD_LDFLAGS) $(1) -v,$(1),$(2),$(3))
81 __rustc-option = $(call try-run,\
/linux/drivers/phy/broadcom/
H A Dphy-brcm-sata.c429 int try; in brcm_ns2_sata_init() local
468 try = 50; in brcm_ns2_sata_init()
469 while (try) { in brcm_ns2_sata_init()
475 try--; in brcm_ns2_sata_init()
477 if (!try) { in brcm_ns2_sata_init()
492 unsigned int val, try; in brcm_nsp_sata_init() local
534 try = 50; in brcm_nsp_sata_init()
535 while (--try) { in brcm_nsp_sata_init()
542 if (!try) { in brcm_nsp_sata_init()
564 unsigned int val, try; in brcm_sr_sata_init() local
[all …]
/linux/init/
H A Ddo_mounts.c258 int try; in mount_nfs_root() local
269 for (try = 1; ; try++) { in mount_nfs_root()
272 if (try > NFSROOT_RETRY_MAX) in mount_nfs_root()
300 int try; in mount_cifs_root() local
306 for (try = 1; ; try++) { in mount_cifs_root()
310 if (try > CIFSROOT_RETRY_MAX) in mount_cifs_root()
/linux/tools/perf/Documentation/
H A Dtips.txt1 For a higher level overview, try: perf report --sort comm,dso
26 If you have debuginfo enabled, try: perf report -s sym,srcline
27 For memory address profiling, try: perf mem record / perf mem report
28 For tracepoint events, try: perf report -s trace_fields
30 If call chains don't work try perf record --call-graph dwarf or --call-graph lbr
42 If you prefer Intel style assembly, try: perf annotate -M intel
44 For hierarchical output, try: perf report --hierarchy
65 For latency profiling, try: perf record/report --latency
66 For parallelism histogram, try: perf report --hierarchy --sort latency,parallelism,comm,symbol
67 To analyze particular parallelism levels, try: perf report --latency --parallelism=32-64
[all …]
/linux/Documentation/power/
H A Dtricks.rst7 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
H A Dbasic-pm-debugging.rst10 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/lib/kunit/
H A Dtry-catch-impl.h19 kunit_try_catch_func_t try, in kunit_try_catch_init() argument
24 try_catch->try = try; in kunit_try_catch_init()
/linux/Documentation/userspace-api/media/v4l/
H A Dvidioc-subdev-enum-mbus-code.rst57 Available media bus formats may depend on the current 'try' formats at
60 information about the try formats.
115 - The driver allows the application to try to change the default colorspace
122 - The driver allows the application to try to change the default transform function.
129 - The driver allows the application to try to change the default Y'CbCr
136 - The driver allows the application to try to change the default HSV
143 - The driver allows the application to try to change the default
/linux/drivers/bluetooth/
H A Dbt3c_cs.c646 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/drivers/misc/sgi-gru/
H A Dgrukdump.c115 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/include/linux/surface_aggregator/
H A Dserial_hub.h370 #define __SSH_PACKET_PRIORITY(base, try) \ argument
371 (((base) << 4) | ((try) & 0x0f))
388 #define SSH_PACKET_PRIORITY(base, try) \ argument
389 __SSH_PACKET_PRIORITY(SSH_PACKET_PRIORITY_##base, (try))
/linux/drivers/tty/serial/8250/
H A Dserial_cs.c403 int *try = priv_data; in simple_config_check() local
408 if ((*try & 0x1) == 0) in simple_config_check()
411 if (p_dev->resource[0]->end != size_table[(*try >> 1)]) in simple_config_check()
446 int ret, try; in simple_config() local
453 for (try = 0; try < 4; try++) in simple_config()
454 if (!pcmcia_loop_config(link, simple_config_check, &try)) in simple_config()
/linux/tools/perf/util/
H A Dperf_api_probe.c79 const char *try[] = {"cycles", "instructions", NULL}; in perf_probe_api() local
83 while (ret == -EAGAIN && try[i]) { in perf_probe_api()
84 snprintf(buf, sizeof(buf), "%s/%s/u", pmu->name, try[i++]); in perf_probe_api()
/linux/drivers/rtc/
H A Drtc-rv8803.c80 int try = RV8803_I2C_TRY_COUNT; in rv8803_read_reg() local
89 while ((ret == -ENXIO || ret == -EIO) && --try); in rv8803_read_reg()
99 int try = RV8803_I2C_TRY_COUNT; in rv8803_read_regs() local
104 while ((ret == -ENXIO || ret == -EIO) && --try); in rv8803_read_regs()
117 int try = RV8803_I2C_TRY_COUNT; in rv8803_write_reg() local
122 while ((ret == -ENXIO || ret == -EIO) && --try); in rv8803_write_reg()
132 int try = RV8803_I2C_TRY_COUNT; in rv8803_write_regs() local
138 while ((ret == -ENXIO || ret == -EIO) && --try); in rv8803_write_regs()
/linux/tools/testing/kunit/test_data/
H A Dtest_kernel_panic_interrupt.log13 [ 0.060000] # Subtest: kunit-try-catch-test
17 [ 0.060000] ok 2 - kunit-try-catch-test
H A Dtest_config_printk_time.log13 [ 0.060000] # Subtest: kunit-try-catch-test
17 [ 0.060000] ok 2 - kunit-try-catch-test
H A Dtest_output_with_prefix_isolated_correctly.log14 [ 0.060000] # Subtest: kunit-try-catch-test
18 [ 0.060000] ok 2 - kunit-try-catch-test
H A Dtest_pound_no_prefix.log15 # Subtest: kunit-try-catch-test
19 ok 2 - kunit-try-catch-test
H A Dtest_pound_sign.log15 [ 0.060000] # Subtest: kunit-try-catch-test
19 [ 0.060000] ok 2 - kunit-try-catch-test
H A Dtest_multiple_prefixes.log13 [ 0.060000][ T1] # Subtest: kunit-try-catch-test
17 [ 0.060000][ T1] ok 2 - kunit-try-catch-test
H A Dtest_interrupted_tap_output.log19 [ 0.060000] # Subtest: kunit-try-catch-test
23 [ 0.060000] ok 2 - kunit-try-catch-test
/linux/drivers/char/tpm/
H A Dtpm1-cmd.c746 unsigned int try; in tpm1_pm_suspend() local
759 for (try = 0; try < TPM_RETRY; try++) { in tpm1_pm_suspend()
781 else if (try > 0) in tpm1_pm_suspend()
783 try * TPM_TIMEOUT_RETRY); in tpm1_pm_suspend()
/linux/fs/adfs/
H A Dsuper.c263 int ret, try; in adfs_probe() local
265 for (try = 0; try < 2; try++) { in adfs_probe()
280 offset >> sb->s_blocksize_bits, try); in adfs_probe()
/linux/drivers/media/usb/dvb-usb/
H A Dgp8psk.c33 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/Documentation/gpu/amdgpu/display/
H A Ddisplay-contributing.rst11 this is a static page, and it is always a good idea to try to reach developers
23 Usually, we try to add a proper label to all new tickets to make it easy to
35 is, we recommend you run all IGT tests and try to fix any failure you see in
49 Enable the W1 or W2 warning level in the kernel compilation and try to fix the
71 fantastic way to check the code path when developers try to make sense of a
165 on some particular part, we can try to help with some basic guidance. Finally,

12345678910>>...26