Home
last modified time | relevance | path

Searched refs:good (Results 1 – 25 of 514) sorted by relevance

12345678910>>...21

/linux-6.15/tools/testing/selftests/exec/
H A Dbinfmt_script.py45 def test(name, size, good=True, leading="", root="./", target="/perl", argument
82 if good:
91 if good:
117 test(name="too-big", size=SIZE+80, good=False)
119 test(name="exact", size=SIZE, good=False)
121 test(name="exact-space", size=SIZE, good=False, leading=" ")
123 test(name="whitespace-too-big", size=SIZE+71, good=False, root="",
126 test(name="truncated", size=SIZE+17, good=False, leading=" " * 19)
128 test(name="empty", size=2, good=False, root="",
131 test(name="spaces", size=SIZE-1, good=False, root="", fill=" ",
[all …]
/linux-6.15/net/rxrpc/
H A Dpeer_event.c372 int good, trial, bad, jumbo; in rxrpc_input_probe_for_pmtud() local
374 good = peer->pmtud_good; in rxrpc_input_probe_for_pmtud()
377 if (good >= bad - 1) { in rxrpc_input_probe_for_pmtud()
402 good = trial; in rxrpc_input_probe_for_pmtud()
403 peer->pmtud_good = good; in rxrpc_input_probe_for_pmtud()
404 if (good > max_data) in rxrpc_input_probe_for_pmtud()
405 max_data = good; in rxrpc_input_probe_for_pmtud()
420 if (good < RXRPC_JUMBO(2) && bad > RXRPC_JUMBO(2)) in rxrpc_input_probe_for_pmtud()
422 else if (good < RXRPC_JUMBO(4) && bad > RXRPC_JUMBO(4)) in rxrpc_input_probe_for_pmtud()
435 trial = (good + bad) / 2; in rxrpc_input_probe_for_pmtud()
[all …]
/linux-6.15/tools/testing/ktest/
H A Dconfig-bisect.pl699 my $good = "$good_start.tmp";
717 if ( -f $good || -f $bad ) {
720 if ( -f $good ) {
721 $p = "$good exists\n";
734 run_command "cp $good_start $good" or die "failed to copy to $good\n";
737 if ( ! -f $good ) {
738 die "Can not find file $good\n";
744 run_command "cp $output_config $good" or die "failed to copy $config to $good\n";
752 my $ret = config_bisect $good, $bad;
760 run_command "rm $good";
[all …]
/linux-6.15/Documentation/translations/zh_CN/admin-guide/
H A Dbug-bisect.rst49 $ git bisect good [commit]
54 $ git bisect good
67 $ git bisect good v4.8
70 .. [#f1] 您可以(可选地)在开始git bisect的时候提供good或bad参数
/linux-6.15/Documentation/translations/zh_TW/admin-guide/
H A Dbug-bisect.rst52 $ git bisect good [commit]
57 $ git bisect good
70 $ git bisect good v4.8
73 .. [#f1] 您可以(可選地)在開始git bisect的時候提供good或bad參數
/linux-6.15/tools/testing/selftests/seccomp/
H A Dseccomp_benchmark.c110 bool good; in compare() local
122 good = false; in compare()
127 good = false; in compare()
131 good = eval(one, two); in compare()
132 printf("%s\n", good ? "✔️" : "❌"); in compare()
135 ksft_test_result(good, "%s %s %s\n", name_one, name_eval, name_two); in compare()
137 return good ? 0 : 1; in compare()
/linux-6.15/fs/
H A Dfs_parser.c394 bool good = true; in validate_constant_table() local
404 good = false; in validate_constant_table()
411 good = false; in validate_constant_table()
416 good = false; in validate_constant_table()
424 good = false; in validate_constant_table()
428 return good; in validate_constant_table()
440 bool good = true; in fs_validate_description() local
450 good = false; in fs_validate_description()
454 return good; in fs_validate_description()
/linux-6.15/crypto/async_tx/
H A Dasync_raid6_recov.c217 int good_srcs, good, i; in __2data_recov_5() local
220 good = -1; in __2data_recov_5()
226 good = i; in __2data_recov_5()
235 g = blocks[good]; in __2data_recov_5()
236 g_off = offs[good]; in __2data_recov_5()
251 raid6_gfexp[good], bytes, submit); in __2data_recov_5()
483 int good_srcs, good, i; in async_raid6_datap_recov() local
512 good = -1; in async_raid6_datap_recov()
517 good = i; in async_raid6_datap_recov()
543 struct page *g = blocks[good]; in async_raid6_datap_recov()
[all …]
/linux-6.15/kernel/
H A DKconfig.hz30 250 Hz is a good compromise choice allowing server performance
31 while also showing good interactive responsiveness even
38 300 Hz is a good compromise choice allowing server performance
39 while also showing good interactive responsiveness even
/linux-6.15/lib/
H A Dpercpu_counter.c333 bool good = false; in __percpu_counter_limited_add() local
359 good = true; in __percpu_counter_limited_add()
364 good = true; in __percpu_counter_limited_add()
367 if (!good) { in __percpu_counter_limited_add()
382 good = true; in __percpu_counter_limited_add()
391 return good; in __percpu_counter_limited_add()
/linux-6.15/fs/xfs/scrub/
H A Ddirtree_repair.c83 oc->good--; in xrep_dirtree_delete_all_paths()
93 ASSERT(oc->good == 0); in xrep_dirtree_delete_all_paths()
138 ASSERT(oc->suspect + oc->good == 1); in xrep_dirtree_find_surviving_path()
164 oc->good--; in xrep_dirtree_keep_one_good_path()
174 ASSERT(oc->good < 2); in xrep_dirtree_keep_one_good_path()
208 ASSERT(oc->good == 0); in xrep_dirtree_keep_one_suspect_path()
229 if (oc->good + oc->suspect == 1) { in xrep_dirtree_decide_fate()
235 if (oc->good + oc->suspect == 0) { in xrep_dirtree_decide_fate()
245 if (oc->good > 0) { in xrep_dirtree_decide_fate()
/linux-6.15/drivers/net/wireless/st/cw1200/
H A Dsta.h65 void __cw1200_cqm_bssloss_sm(struct cw1200_common *priv, int init, int good,
68 int init, int good, int bad) in cw1200_cqm_bssloss_sm() argument
71 __cw1200_cqm_bssloss_sm(priv, init, good, bad); in cw1200_cqm_bssloss_sm()
/linux-6.15/Documentation/driver-api/gpio/
H A Dusing-gpio.rst10 For examples of already existing generic drivers that will also be good
28 to any existing kernel subsystem and not be a good fit for an operating system,
32 Applications that have a good reason to use the industrial I/O (IIO) subsystem
33 from userspace will likely be a good fit for using GPIO lines from userspace as
/linux-6.15/drivers/leds/
H A DTODO38 Multicolor is not a good fit for RGB LED. It does not really know
50 RGB LEDs are quite common, and it would be good to be able to turn LED
52 userspace is able to set arbitrary colors, and it might be good to
70 In future, it would be good to be able to set rgb led to particular
/linux-6.15/Documentation/devicetree/bindings/mfd/
H A Dsilergy,sy7636a.yaml30 epd-pwr-good-gpios:
32 Specifying the power good GPIOs.
/linux-6.15/include/linux/
H A Dpercpu_counter.h201 bool good = false; in percpu_counter_limited_add() local
212 good = true; in percpu_counter_limited_add()
215 return good; in percpu_counter_limited_add()
/linux-6.15/Documentation/devicetree/bindings/soc/tegra/
H A Dnvidia,tegra20-pmc.yaml72 nvidia,cpu-pwr-good-en:
74 description: CPU power good signal from external PMIC to PMC is enabled
87 nvidia,cpu-pwr-good-time:
89 description: CPU power good time in microseconds
95 nvidia,core-pwr-good-time:
97 description: core power good time in microseconds
369 nvidia,core-pwr-off-time: ["nvidia,core-pwr-good-time"]
370 nvidia,cpu-pwr-off-time: ["nvidia,cpu-pwr-good-time"]
388 nvidia,cpu-pwr-good-time = <0>;
390 nvidia,core-pwr-good-time = <4587 3876>;
/linux-6.15/Documentation/admin-guide/cgroup-v1/
H A Dmemcg_test.rst148 When you do test to do racy case, it's good test to set memcg's limit
160 SwapCache. Test with shmem/tmpfs is always good test.
203 memory hotplug test is one of good test.
231 running new jobs in new group is also good.
236 Mounting with other subsystems is a good test because there is a
252 For example, test like following is good:
344 It's good idea to test root cgroup as well.
/linux-6.15/Documentation/arch/arm/
H A Dmem_alignment.rst8 bad idea to configure it out, but Russell King has some good reasons for
20 trap to SIGBUS any code performing unaligned access (good for debugging bad
26 Please note that randomly changing the behaviour without good thought is
/linux-6.15/Documentation/process/
H A Dmanagement-style.rst113 not. After all, if **they** aren't certain whether it's a good idea, you
170 - get really good at apologies
202 good idea - go wild", or "That sounds good, but what about xxx?". The
209 specific directions, but let's face it, they might be good at what they
210 do, and suck at everything else. The good news is that people tend to
211 naturally gravitate back to what they are good at, so it's not like you
223 best way of taking the blame: do it for someone else. You'll feel good
224 for taking the fall, they'll feel good about not getting blamed, and the
238 you've followed the previous rules, you'll be pretty good at saying that
249 do a good job.
[all …]
/linux-6.15/drivers/gpu/drm/ci/
H A Dbuild.yml65 # Would be good to have DEBUG_KMEMLEAK, but it doesn't work well with any of
77 # Would be good to have DEBUG_KMEMLEAK, but it doesn't work well with any of
89 # Would be good to have DEBUG_KMEMLEAK, but it doesn't work well with any of
/linux-6.15/Documentation/filesystems/bcachefs/
H A DCodingStyle.rst12 good. But appreciate beauty when you see it - and let people know.
43 Good assertions are based on state, not logic. To write good assertions, you
51 A good assertion checks something that the compiler could check for us, and
83 labels, and good structure - we don't want files with a list of bare integers,
124 This will also motivate you to make your debugging tools as good as possible,
130 become product-manager focused. Often time an idea is a good one but needs to
179 don't go overboard. A good commit message is wonderful - but if the information
183 A good code comment is wonderful, but even better is the comment that didn't
/linux-6.15/tools/bootconfig/samples/
H A Dgood-simple.bconf1 # A good simple bootconfig
/linux-6.15/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
34 you wish to contribute to the display code but are unsure where a good place
74 if a set of functions has a proper prefix, it becomes easy to create a good
98 task, it would be a good idea to find a tool that can discover code duplication
152 display output fidelity, it would be good if this option was something that
/linux-6.15/drivers/infiniband/hw/mthca/
H A Dmthca_reset.c175 goto good; in mthca_reset()
186 good: in mthca_reset()

12345678910>>...21