/linux/drivers/gpu/host1x/hw/ |
H A D | syncpt_hw.c | 56 u32 old, live; in syncpt_load() local 61 live = host1x_sync_readl(host, HOST1X_SYNC_SYNCPT(sp->id)); in syncpt_load() 62 } while ((u32)atomic_cmpxchg(&sp->min_val, old, live) != old); in syncpt_load() 64 if (!host1x_syncpt_check_max(sp, live)) in syncpt_load() 69 return live; in syncpt_load()
|
/linux/drivers/gpu/drm/i915/selftests/ |
H A D | i915_selftest.c | 74 int (*live)(struct drm_i915_private *); member 84 #define selftest(n, f) [live_##n] = { .name = #n, { .live = f } }, 90 #define selftest(n, f) [perf_##n] = { .name = #n, { .live = f } }, 212 err = st->live(data); in __run_selftests() 258 if (!i915_selftest.live) in i915_live_selftests() 264 err = run_selftests(live, i915); in i915_live_selftests() 266 i915_selftest.live = err; in i915_live_selftests() 270 if (i915_selftest.live < 0) { in i915_live_selftests() 271 i915_selftest.live = -ENOTTY; in i915_live_selftests() 495 module_param_named_unsafe(live_selftests, i915_selftest.live, int, 0400);
|
/linux/fs/bcachefs/ |
H A D | btree_cache.c | 55 struct btree_cache *bc = container_of(list, struct btree_cache, live[list->idx]); in btree_cache_can_free() 230 list_move(&b->list, &bc->live[1].list); in bch2_node_pin() 231 bc->live[0].nr--; in bch2_node_pin() 232 bc->live[1].nr++; in bch2_node_pin() 246 list_for_each_entry_safe(b, n, &bc->live[1].list, list) { in bch2_btree_cache_unpin() 248 list_move(&b->list, &bc->live[0].list); in bch2_btree_cache_unpin() 249 bc->live[0].nr++; in bch2_btree_cache_unpin() 250 bc->live[1].nr--; in bch2_btree_cache_unpin() 270 --bc->live[btree_node_pinned(b)].nr; in __bch2_btree_node_hash_remove() 297 list_add_tail(&b->list, &bc->live[p].list); in __bch2_btree_node_hash_insert() [all …]
|
H A D | subvolume_types.h | 12 bool live; member
|
/linux/net/rxrpc/ |
H A D | net_ns.c | 18 if (rxnet->live) in rxrpc_service_conn_reap_timeout() 27 if (rxnet->live) in rxrpc_peer_keepalive_timeout() 39 rxnet->live = true; in rxrpc_init_net() 96 rxnet->live = false; in rxrpc_init_net() 107 rxnet->live = false; in rxrpc_exit_net()
|
/linux/fs/afs/ |
H A D | main.c | 72 net->live = true; in afs_net_init() 130 net->live = false; in afs_net_init() 135 net->live = false; in afs_net_init() 140 net->live = false; in afs_net_init() 151 net->live = false; in afs_net_exit()
|
/linux/Documentation/ABI/testing/ |
H A D | debugfs-vfio | 15 of vfio devices that support live migration. 16 The debugfs of each vfio device that supports live migration 23 Description: Read the live migration status of the vfio device.
|
/linux/kernel/bpf/ |
H A D | log.c | 544 enum bpf_reg_liveness live) in print_liveness() argument 546 if (live & (REG_LIVE_READ | REG_LIVE_WRITTEN | REG_LIVE_DONE)) in print_liveness() 548 if (live & REG_LIVE_READ) in print_liveness() 550 if (live & REG_LIVE_WRITTEN) in print_liveness() 552 if (live & REG_LIVE_DONE) in print_liveness() 773 print_liveness(env, reg->live); in print_verifier_state() 807 print_liveness(env, reg->live); in print_verifier_state() 817 print_liveness(env, reg->live); in print_verifier_state() 833 print_liveness(env, reg->live); in print_verifier_state() 843 print_liveness(env, reg->live); in print_verifier_state()
|
/linux/Documentation/driver-api/nvdimm/ |
H A D | firmware-activate.rst | 41 either 'live', or 'quiesce'. A value of 'quiesce' triggers the kernel to 44 modifications of system memory. A value of 'live' attempts 50 'live' or 'quiesce', where 'live' indicates that the firmware 53 expect and injects a quiet period for the memory controller, but 'live'
|
/linux/kernel/livepatch/ |
H A D | Kconfig | 5 Arch supports kernel live patching 16 Say Y here if you want to support kernel live patching.
|
/linux/Documentation/networking/ |
H A D | net_failover.rst | 24 datapath. It also enables hypervisor controlled live migration of a VM with 65 be brought UP during live migration to allow uninterrupted communication. 116 net_failover also enables hypervisor controlled live migration to be supported 120 Here is a sample script that shows the steps to initiate live migration from 153 virsh detach-device --live --config $DOMAIN $VF_XML 163 virsh migrate --live --persistent $DOMAIN qemu+ssh://$REMOTE_HOST/system 183 virsh attach-device --config --live vm01 vf.xml
|
/linux/tools/perf/Documentation/ |
H A D | perf-kmem.txt | 66 --live:: 67 Show live page stat. The perf kmem shows total allocation stat by 68 default, but this option shows live (currently allocated) pages
|
H A D | perf-kvm.txt | 16 'perf kvm stat [record|report|live] [<options>] 63 'perf kvm stat live' reports statistical data in a live mode (similar to 64 record + report but with statistical data updated live at a given display
|
/linux/Documentation/bpf/ |
H A D | bpf_prog_run.rst | 49 returned to userspace. A separate mode for live execution of XDP programs is 52 Running XDP programs in "live frame mode" 55 The ``BPF_PROG_RUN`` command has a separate mode for running live XDP programs, 62 The live packet mode is optimised for high performance execution of the supplied 67 - When executing an XDP program in live frame mode, the result of the execution 80 the regular (non-live) mode. The XDP program will be executed as though the
|
/linux/tools/testing/selftests/gpio/ |
H A D | gpio-sim.sh | 93 echo 1 > $CONFIGFS_DIR/$CHIP/live || fail "Unable to enable the chip" 99 echo 0 > $CONFIGFS_DIR/$CHIP/live || fail "Unable to disable the chip" 306 echo 1 > $CONFIGFS_DIR/chip/live 2> /dev/null && fail "Probe error was not propagated" 311 echo 1 > $CONFIGFS_DIR/chip/live 2> /dev/null && fail "Chip enabled without any GPIO banks" 320 echo 1 > $CONFIGFS_DIR/chip/live 2> /dev/null && fail "Duplicate chip labels were not rejected"
|
/linux/Documentation/devicetree/ |
H A D | dynamic-resolution-notes.rst | 19 1. Get the maximum device tree phandle value from the live tree + 1. 24 in the live tree. This is the label used to tag the node.
|
/linux/drivers/iio/adc/ |
H A D | ad7124.c | 152 bool live; member 287 st->channels[channel].cfg.live = false; in ad7124_set_channel_odr() 331 st->channels[channel].cfg.live = false; in ad7124_set_3db_filter_freq() 348 if (cfg_aux->live && in ad7124_find_similar_live_cfg() 435 lru_cfg->live = false; in ad7124_pop_config() 445 cfg->live = false; in ad7124_pop_config() 479 ch->cfg.live = true; in ad7124_enable_channel() 493 if (!cfg->live) { in ad7124_prepare_read() 702 st->channels[chan->address].cfg.live = false; in ad7124_write_raw()
|
/linux/Documentation/admin-guide/gpio/ |
H A D | gpio-sim.rst | 29 **Attribute:** ``/config/gpio-sim/gpio-device/live`` 33 name (e.g. ``'gpio-sim.0'``). The ``'live'`` attribute allows to trigger the 74 Once the confiuration is complete, the ``'live'`` attribute must be set to 1 in 77 successfully probed and if this doesn't happen, writing to ``'live'`` will
|
H A D | gpio-virtuser.rst | 31 **Attribute:** ``/config/gpio-consumer/example-name/live`` 42 The ``'live'`` attribute allows to trigger the actual creation of the device 95 Once the confiuration is complete, the ``'live'`` attribute must be set to 1 in 98 to be successfully probed and if this doesn't happen, writing to ``'live'`` will
|
/linux/drivers/gpio/ |
H A D | gpio-sim.c | 746 bool live; in gpio_sim_device_config_live_show() local 749 live = gpio_sim_device_is_live(dev); in gpio_sim_device_config_live_show() 751 return sprintf(page, "%c\n", live ? '1' : '0'); in gpio_sim_device_config_live_show() 1057 bool live; in gpio_sim_device_config_live_store() local 1060 ret = kstrtobool(page, &live); in gpio_sim_device_config_live_store() 1064 if (live) in gpio_sim_device_config_live_store() 1068 if (live == gpio_sim_device_is_live(dev)) in gpio_sim_device_config_live_store() 1070 else if (live) in gpio_sim_device_config_live_store() 1080 if (live == !!ret) in gpio_sim_device_config_live_store() 1086 CONFIGFS_ATTR(gpio_sim_device_config_, live);
|
H A D | gpio-virtuser.c | 1385 bool live; in gpio_virtuser_device_config_live_show() local 1388 live = gpio_virtuser_device_is_live(dev); in gpio_virtuser_device_config_live_show() 1390 return sprintf(page, "%c\n", live ? '1' : '0'); in gpio_virtuser_device_config_live_show() 1579 bool live; in gpio_virtuser_device_config_live_store() local 1581 ret = kstrtobool(page, &live); in gpio_virtuser_device_config_live_store() 1585 if (live) in gpio_virtuser_device_config_live_store() 1589 if (live == gpio_virtuser_device_is_live(dev)) in gpio_virtuser_device_config_live_store() 1591 else if (live) in gpio_virtuser_device_config_live_store() 1601 if (live == !!ret) in gpio_virtuser_device_config_live_store() 1607 CONFIGFS_ATTR(gpio_virtuser_device_config_, live);
|
/linux/Documentation/sound/cards/ |
H A D | index.rst | 9 sb-live-mixer
|
/linux/lib/ |
H A D | is_single_threaded.c | 22 if (atomic_read(&task->signal->live) != 1) in current_is_single_threaded()
|
/linux/Documentation/features/debug/optprobes/ |
H A D | arch-support.txt | 4 # description: arch supports live patched optprobes
|
/linux/Documentation/features/debug/uprobes/ |
H A D | arch-support.txt | 4 # description: arch supports live patched user probes
|