/linux/include/soc/fsl/qe/ |
H A D | ucc_slow.h | 9 * Internal header file for UCC SLOW unit routines. 80 /* UCC Slow Channel Protocol Mode */ 87 /* UCC Slow Transparent Transmit CRC (TCRC) */ 97 /* UCC Slow oversampling rate for transmitter (TDCR) */ 109 /* UCC Slow Oversampling rate for receiver (RDCR) 122 /* UCC Slow Transmitter encoding method (TENC) 129 /* UCC Slow Receiver decoding method (RENC) 136 /* UCC Slow Diagnostic mode (DIAG) 217 * Initializes Slow UCC according to provided parameters. 219 * us_info - (In) pointer to the slow UC [all...] |
H A D | ucc.h | 21 /* Slow or fast type for UCCs. 29 * Sets UCC to slow or fast mode. 32 * speed - (In) slow or fast mode for UCC.
|
/linux/include/net/page_pool/ |
H A D | types.h | 30 * page_pool_params.slow.queue_idx. 72 * @slow: params with slowpath access only (initialization and Netlink) 89 struct_group_tagged(page_pool_params_slow, slow, 103 * @slow: slow path order-0 allocations 104 * @slow_high_order: slow path high order allocations 105 * @empty: ptr ring is empty, so a slow path allocation was forced 112 u64 slow; member 172 bool has_init_callback:1; /* slow::init_callback is set */ 244 /* Slow/Control-path information follows */ 245 struct page_pool_params_slow slow; member
|
/linux/net/core/ |
H A D | page_pool_user.c | 18 /* Protects: page_pools, netdevice->page_pools, pool->p.napi, pool->slow.netdev, 49 !net_eq(dev_net(pool->slow.netdev), genl_info_net(info))) { in netdev_nl_page_pool_get_do() 132 (pool->slow.netdev->ifindex != LOOPBACK_IFINDEX && in page_pool_nl_stats_fill() 134 pool->slow.netdev->ifindex))) in page_pool_nl_stats_fill() 142 stats.alloc_stats.slow) || in page_pool_nl_stats_fill() 230 if (pool->slow.netdev->ifindex != LOOPBACK_IFINDEX && in page_pool_nl_fill() 232 pool->slow.netdev->ifindex)) in page_pool_nl_fill() 273 net = dev_net(pool->slow.netdev); in netdev_nl_page_pool_event() 323 if (pool->slow.netdev) { in page_pool_list() 325 &pool->slow in page_pool_list() [all...] |
H A D | page_pool.c | 95 stats->alloc_stats.slow += pool->alloc_stats.slow; in page_pool_get_stats() 140 *data++ = pool_stats->alloc_stats.slow; in page_pool_ethtool_stats_get() 204 memcpy(&pool->slow, ¶ms->slow, sizeof(pool->slow)); in page_pool_init() 210 if (pool->slow.flags & ~PP_FLAG_ALL) in page_pool_init() 224 if (pool->slow.flags & PP_FLAG_DMA_MAP) { in page_pool_init() 232 if (pool->slow.flags & PP_FLAG_DMA_SYNC_DEV) { in page_pool_init() 236 if (!(pool->slow.flags & PP_FLAG_DMA_MAP)) in page_pool_init() 249 pool->has_init_callback = !!pool->slow.init_callback; in page_pool_init() 252 if (!(pool->slow.flags & PP_FLAG_SYSTEM_POOL)) { in page_pool_init() 281 if (pool->slow.flags & PP_FLAG_ALLOW_UNREADABLE_NETMEM) { in page_pool_init() [all …]
|
/linux/Documentation/devicetree/bindings/leds/ |
H A D | leds-ns2.txt | 10 - slow-gpio: Slow LED GPIO. See OF device-tree GPIO specification. 12 the corresponding cmd-gpio/slow-gpio values. All the GPIO values combinations 28 slow-gpio = <&gpio0 29 0>;
|
/linux/drivers/soc/fsl/qe/ |
H A D | ucc.c | 45 /* Configure the UCC to either Slow or Fast. 47 * A given UCC can be figured to support either "slow" devices (e.g. UART) 59 /* The GUEMR register is at the same location for both slow and fast in ucc_set_type() 60 devices, so we just use uccX.slow.guemr. */ in ucc_set_type() 62 case 0: guemr = &qe_immr->ucc1.slow.guemr; in ucc_set_type() 64 case 1: guemr = &qe_immr->ucc2.slow.guemr; in ucc_set_type() 66 case 2: guemr = &qe_immr->ucc3.slow.guemr; in ucc_set_type() 68 case 3: guemr = &qe_immr->ucc4.slow.guemr; in ucc_set_type() 70 case 4: guemr = &qe_immr->ucc5.slow.guemr; in ucc_set_type() 72 case 5: guemr = &qe_immr->ucc6.slow in ucc_set_type() [all...] |
/linux/drivers/pinctrl/ |
H A D | pinctrl-at91.h | 40 #define PIO_IFSCDR 0x80 /* Input Filter Slow Clock Disable Register */ 41 #define PIO_IFSCER 0x84 /* Input Filter Slow Clock Enable Register */ 42 #define PIO_IFSCSR 0x88 /* Input Filter Slow Clock Status Register */ 43 #define PIO_SCDR 0x8c /* Slow Clock Divider Debouncing Register */ 44 #define PIO_SCDR_DIV (0x3fff << 0) /* Slow Clock Divider Mask */
|
/linux/lib/ |
H A D | dec_and_lock.c | 27 /* Otherwise do it the slow way */ in _atomic_dec_and_lock() 44 /* Otherwise do it the slow way */ in _atomic_dec_and_lock_irqsave() 59 /* Otherwise do it the slow way */ in _atomic_dec_and_raw_lock() 75 /* Otherwise do it the slow way */ in _atomic_dec_and_raw_lock_irqsave()
|
/linux/Documentation/dev-tools/kunit/ |
H A D | running_tips.rst | 305 To mark a test case as slow, you can also use ``KUNIT_CASE_SLOW(test_name)``. 306 This is a helpful macro as the slow attribute is the most commonly used. 340 # example_test.speed: slow 374 kunit.py run --filter speed=slow 382 kunit.py run --filter "speed>slow" 384 This example will run all tests with speeds faster than slow. Note that the 393 kunit.py run --filter "speed>slow, module=kunit_example_test" 397 the filter as a module param: ``kunit.filter="speed>slow, speed<=normal"``. 424 This attribute indicates the speed of a test's execution (how slow or fast the 428 "slow", o [all...] |
/linux/drivers/watchdog/ |
H A D | bd96801_wdt.c | 147 unsigned int slow; in find_closest_slow() local 149 slow = window * multipliers[j]; in find_closest_slow() 150 if (slow >= *target && (!val || slow < val)) { in find_closest_slow() 151 val = slow; in find_closest_slow() 181 dev_err(dev, "Unsupported slow timeout %u uS [max %u]\n", in bd96801_set_wdt_mode() 206 "can't support slow timeout %u uS using fast %u uS. [max slow %u uS]\n", in bd96801_set_wdt_mode() 214 dev_dbg(dev, "Setting type SLOW 0x%x\n", type); in bd96801_set_wdt_mode()
|
/linux/net/ipv4/ |
H A D | tcp_vegas.c | 19 * only every-other RTT during slow start, we increase during 20 * every RTT during slow start, just like Reno. 21 * o Largely to allow continuous cwnd growth during slow start, 25 * to achieve the right ("actual") rate when we exit slow start. 230 /* Going too fast. Time to slow down in tcp_vegas_cong_avoid() 246 /* Slow start. */ in tcp_vegas_cong_avoid() 256 * we slow down. in tcp_vegas_cong_avoid() 285 /* Use normal slow start */ in tcp_vegas_cong_avoid()
|
H A D | tcp_bic.c | 45 MODULE_PARM_DESC(initial_ssthresh, "initial value of slow start threshold"); 116 /* slow start AMD linear increase */ in bictcp_update() 118 /* slow start */ in bictcp_update() 121 /* slow start */ in bictcp_update() 129 /* if in slow start or link utilization is very low */ in bictcp_update()
|
H A D | tcp_cubic.c | 13 * CUBIC integrates a new slow start algorithm, called HyStart. 16 * "Taming the Elephants: New TCP Slow Start", NCSU TechReport 2008. 39 /* Two methods of hybrid slow start */ 70 MODULE_PARM_DESC(initial_ssthresh, "initial value of slow start threshold"); 76 MODULE_PARM_DESC(hystart, "turn on/off hybrid slow start algorithm"); 78 MODULE_PARM_DESC(hystart_detect, "hybrid slow start detection mechanisms" 81 MODULE_PARM_DESC(hystart_low_window, "lower bound cwnd for hybrid slow start"); 368 * slow start we begin with small TSO packets and ca->delay_min would 411 * during slow start. in hystart_update()
|
/linux/tools/testing/selftests/net/mptcp/ |
H A D | mptcp_join.sh | 957 elif [ $speed = "slow" ]; then 2030 speed=slow \ 2043 speed=slow \ 2056 speed=slow \ 2070 speed=slow \ 2187 speed=slow \ 2298 speed=slow \ 2310 speed=slow \ 2349 addr_nr_ns2=-1 speed=slow \ 2363 addr_nr_ns2=-2 speed=slow \ [all...] |
/linux/Documentation/devicetree/bindings/timer/ |
H A D | img,pistachio-gptimer.yaml | 29 - description: Slow counter clock 35 - const: slow 67 clock-names = "fast", "slow", "sys";
|
/linux/lib/math/tests/ |
H A D | prime_numbers_kunit.c | 25 const bool slow = slow_is_prime_number(x); in prime_numbers_test() local 28 KUNIT_ASSERT_EQ_MSG(test, slow, fast, "is-prime(%lu)", x); in prime_numbers_test() 30 if (!slow) in prime_numbers_test()
|
/linux/include/uapi/linux/ |
H A D | lp.h | 46 * have extremely slow printing, or if the machine seems to slow down 47 * a lot when you print. If you have slow printing, increase this 63 * this number, and if you have a slow printer, increase this number.
|
/linux/arch/arm/mach-omap2/ |
H A D | opp2430_data.c | 87 /* PRCM #4 - ratio1 (ES2.1) - SLOW */ 95 /* PRCM #2 - ratio1 (ES2) - SLOW */ 103 /* PRCM #5a - ratio1 - SLOW */ 111 /* PRCM #5b - ratio1 - SLOW*/
|
/linux/arch/parisc/lib/ |
H A D | io.c | 56 * the interfaces seems to be slow: just using the inlined version 128 * but the interfaces seems to be slow: just using the inlined version 208 * doing byte reads the "slow" way isn't nearly as slow as 209 * doing byte writes the slow way (no r-m-w cycle). 226 * interfaces seems to be slow: just using the inlined version of the 298 * Performance is important, but the interfaces seems to be slow:
|
/linux/Documentation/devicetree/bindings/memory-controllers/ |
H A D | qcom,ebi2.yaml | 44 this is something just used on the FAST chip selects and that the SLOW 48 FIXME: The chipselects have SLOW and FAST configuration registers. It's a bit 50 together, or if some chip selects are hardwired to be FAST and others are SLOW 148 /* SLOW chipselect config */
|
/linux/net/mptcp/ |
H A D | sockopt.c | 80 bool slow = lock_sock_fast(ssk); in mptcp_sol_socket_sync_intval() local 117 unlock_sock_fast(ssk, slow); in mptcp_sol_socket_sync_intval() 162 bool slow = lock_sock_fast(ssk); in mptcp_setsockopt_sol_socket_tstamp() local 165 unlock_sock_fast(ssk, slow); in mptcp_setsockopt_sol_socket_tstamp() 238 bool slow = lock_sock_fast(ssk); in mptcp_setsockopt_sol_socket_timestamping() local 241 unlock_sock_fast(ssk, slow); in mptcp_setsockopt_sol_socket_timestamping() 273 bool slow = lock_sock_fast(ssk); in mptcp_setsockopt_sol_socket_linger() local 283 unlock_sock_fast(ssk, slow); in mptcp_setsockopt_sol_socket_linger() 752 bool slow; in mptcp_setsockopt_v4_set_tos() local 754 slow in mptcp_setsockopt_v4_set_tos() 960 bool slow; mptcp_diag_fill_info() local 1643 bool slow; mptcp_set_rcvlowat() local [all...] |
/linux/tools/testing/selftests/bpf/progs/ |
H A D | bpf_cc_cubic.c | 56 * In Slow Start [1], set sk_pacing_rate to 200 % the current rate. in tcp_update_pacing_rate() 59 * [1] : Normal Slow Start condition is (tp->snd_cwnd < tp->snd_ssthresh) in tcp_update_pacing_rate() 61 * end of slow start and should slow down. in tcp_update_pacing_rate()
|
/linux/drivers/clocksource/ |
H A D | timer-atmel-st.c | 218 pr_err("Unable to get slow clock\n"); in atmel_st_timer_init() 224 pr_err("Could not enable slow clock\n"); in atmel_st_timer_init() 230 pr_err("Invalid slow clock rate\n"); in atmel_st_timer_init() 235 /* The 32KiHz "Slow Clock" (tick every 30517.58 nanoseconds) is used in atmel_st_timer_init()
|
/linux/Documentation/locking/ |
H A D | rt-mutex-design.rst | 428 If there is contention on the lock, we go about the slow path 431 The slow path function is where the task's waiter structure is created on 437 The wait_lock of the mutex is taken since the slow path of unlocking the 445 slow path. The first thing that is done here is an atomic setting of 448 without going into the slow unlock path, and it would then need to grab the 477 Since the wait_lock was taken at the entry of the slow lock, we can safely 520 take the slow path when unlocking the mutex. If the mutex doesn't have any 525 the slow unlock path is taken. 527 The first thing done in the slow unlock path is to take the wait_lock of the 534 in the slow pat [all...] |