Home
last modified time | relevance | path

Searched refs:live (Results 1 – 25 of 195) sorted by relevance

12345678

/linux-6.12.1/tools/net/ynl/samples/
Dpage-pool.c19 } live[2]; member
50 s->live[l].cnt++; in count()
52 s->live[l].refs += pp->inflight; in count()
54 s->live[l].bytes += pp->inflight_mem; in count()
125 s->live[1].cnt, s->live[0].cnt); in main()
127 s->live[1].refs, s->live[1].bytes, in main()
128 s->live[0].refs, s->live[0].bytes); in main()
/linux-6.12.1/Documentation/ABI/testing/
Dsysfs-kernel-livepatch4 Contact: live-patching@vger.kernel.org
6 Interface for kernel live patching
9 each loaded live patch module.
14 Contact: live-patching@vger.kernel.org
22 Contact: live-patching@vger.kernel.org
31 Contact: live-patching@vger.kernel.org
39 Contact: live-patching@vger.kernel.org
53 Contact: live-patching@vger.kernel.org
61 Contact: live-patching@vger.kernel.org
69 Contact: live-patching@vger.kernel.org
[all …]
Ddebugfs-vfio15 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-6.12.1/drivers/gpu/host1x/hw/
Dsyncpt_hw.c56 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-6.12.1/drivers/gpu/drm/i915/selftests/
Di915_selftest.c74 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-6.12.1/net/rxrpc/
Dnet_ns.c18 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-6.12.1/fs/bcachefs/
Dbtree_cache.c52 struct btree_cache *bc = container_of(list, struct btree_cache, live[list->idx]); in btree_cache_can_free()
228 list_move(&b->list, &bc->live[1].list); in bch2_node_pin()
229 bc->live[0].nr--; in bch2_node_pin()
230 bc->live[1].nr++; in bch2_node_pin()
244 list_for_each_entry_safe(b, n, &bc->live[1].list, list) { in bch2_btree_cache_unpin()
246 list_move(&b->list, &bc->live[0].list); in bch2_btree_cache_unpin()
247 bc->live[0].nr++; in bch2_btree_cache_unpin()
248 bc->live[1].nr--; in bch2_btree_cache_unpin()
268 --bc->live[btree_node_pinned(b)].nr; in __bch2_btree_node_hash_remove()
295 list_add_tail(&b->list, &bc->live[p].list); in __bch2_btree_node_hash_insert()
[all …]
/linux-6.12.1/fs/xfs/scrub/
Dnlinks.h99 xchk_nlink_total(struct xfs_inode *ip, const struct xchk_nlink *live) in xchk_nlink_total() argument
101 uint64_t ret = live->parents; in xchk_nlink_total()
106 return ret + live->children; in xchk_nlink_total()
/linux-6.12.1/Documentation/devicetree/
Dof_unittest.rst13 is attached to the live tree dynamically, independent of the machine's
138 blob. And finally, if the machine's device tree (i.e live tree) is present,
139 then it attaches the unflattened test data tree to the live tree, else it
140 attaches itself as a live device tree.
143 live tree as explained below. To explain the same, the test data tree described
144 in Figure 2 is attached to the live tree described in Figure 1::
155 Figure 2: Example test data tree to be attached to live tree.
157 According to the scenario above, the live tree is already present so it isn't
162 given parent in live tree. But, if parent already has a child then the new node
164 data node is attached to the live tree above (Figure 1), the final structure is
[all …]
Ddynamic-resolution-notes.rst19 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-6.12.1/fs/afs/
Dmain.c72 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-6.12.1/kernel/bpf/
Dlog.c543 enum bpf_reg_liveness live) in print_liveness() argument
545 if (live & (REG_LIVE_READ | REG_LIVE_WRITTEN | REG_LIVE_DONE)) in print_liveness()
547 if (live & REG_LIVE_READ) in print_liveness()
549 if (live & REG_LIVE_WRITTEN) in print_liveness()
551 if (live & REG_LIVE_DONE) in print_liveness()
771 print_liveness(env, reg->live); in print_verifier_state()
805 print_liveness(env, reg->live); in print_verifier_state()
815 print_liveness(env, reg->live); in print_verifier_state()
831 print_liveness(env, reg->live); in print_verifier_state()
841 print_liveness(env, reg->live); in print_verifier_state()
/linux-6.12.1/Documentation/driver-api/nvdimm/
Dfirmware-activate.rst41 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-6.12.1/kernel/livepatch/
DKconfig5 Arch supports kernel live patching
16 Say Y here if you want to support kernel live patching.
/linux-6.12.1/tools/perf/Documentation/
Dperf-kmem.txt66 --live::
67 Show live page stat. The perf kmem shows total allocation stat by
68 default, but this option shows live (currently allocated) pages
Dperf-kvm.txt16 '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-6.12.1/Documentation/networking/
Dnet_failover.rst24 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-6.12.1/tools/testing/selftests/gpio/
Dgpio-sim.sh99 echo 1 > $CONFIGFS_DIR/$CHIP/live || fail "Unable to enable the chip"
105 echo 0 > $CONFIGFS_DIR/$CHIP/live || fail "Unable to disable the chip"
294 echo 1 > $CONFIGFS_DIR/chip/live 2> /dev/null && fail "Probe error was not propagated"
299 echo 1 > $CONFIGFS_DIR/chip/live 2> /dev/null && fail "Chip enabled without any GPIO banks"
308 echo 1 > $CONFIGFS_DIR/chip/live 2> /dev/null && fail "Duplicate chip labels were not rejected"
/linux-6.12.1/Documentation/bpf/
Dbpf_prog_run.rst49 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-6.12.1/drivers/iio/adc/
Dad7124.c148 bool live; member
283 st->channels[channel].cfg.live = false; in ad7124_set_channel_odr()
327 st->channels[channel].cfg.live = false; in ad7124_set_3db_filter_freq()
344 if (cfg_aux->live && in ad7124_find_similar_live_cfg()
431 lru_cfg->live = false; in ad7124_pop_config()
441 cfg->live = false; in ad7124_pop_config()
475 ch->cfg.live = true; in ad7124_enable_channel()
489 if (!cfg->live) { in ad7124_prepare_read()
664 st->channels[chan->address].cfg.live = false; in ad7124_write_raw()
/linux-6.12.1/Documentation/admin-guide/LSM/
Dtomoyo.rst12 https://tomoyo.sourceforge.net/1.8/ubuntu12.04-live.html
13 https://tomoyo.sourceforge.net/1.8/centos6-live.html
/linux-6.12.1/Documentation/admin-guide/gpio/
Dgpio-sim.rst29 **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
/linux-6.12.1/Documentation/sound/cards/
Dindex.rst9 sb-live-mixer
/linux-6.12.1/lib/
Dis_single_threaded.c22 if (atomic_read(&task->signal->live) != 1) in current_is_single_threaded()
/linux-6.12.1/Documentation/features/debug/optprobes/
Darch-support.txt4 # description: arch supports live patched optprobes

12345678