Home
last modified time | relevance | path

Searched refs:online (Results 1 – 25 of 396) sorted by relevance

12345678910>>...16

/openbmc/linux/drivers/s390/crypto/
H A Dzcrypt_queue.c45 int online = aq->config && zq->online ? 1 : 0; in online_show() local
47 return sysfs_emit(buf, "%d\n", online); in online_show()
57 int online; in online_store() local
59 if (sscanf(buf, "%d\n", &online) != 1 || online < 0 || online > 1) in online_store()
64 if (online && !zc->online) in online_store()
66 zq->online = online; in online_store()
74 if (!online) in online_store()
79 static DEVICE_ATTR_RW(online);
104 if (!!zq->online != !!online) { in zcrypt_queue_force_online()
105 zq->online = online; in zcrypt_queue_force_online()
[all …]
H A Dzcrypt_card.c55 int online = ac->config && zc->online ? 1 : 0; in online_show() local
57 return sysfs_emit(buf, "%d\n", online); in online_show()
67 int online, id, i = 0, maxzqs = 0; in online_store() local
70 if (sscanf(buf, "%d\n", &online) != 1 || online < 0 || online > 1) in online_store()
73 if (online && !ac->config) in online_store()
76 zc->online = online; in online_store()
81 ap_send_online_uevent(&ac->ap_dev, online); in online_store()
95 if (zcrypt_queue_force_online(zq, online)) in online_store()
104 ap_send_online_uevent(&zq->queue->ap_dev, online); in online_store()
113 static DEVICE_ATTR_RW(online);
[all …]
/openbmc/linux/tools/testing/selftests/cpu-hotplug/
H A Dcpu-on-off-test.sh33 online_cpus=`cat $SYSFS/devices/system/cpu/online`
64 if [ -f $cpu/online ] && grep -q $state $cpu/online; then
82 grep -q 1 $SYSFS/devices/system/cpu/cpu$1/online
87 grep -q 0 $SYSFS/devices/system/cpu/cpu$1/online
92 echo 1 > $SYSFS/devices/system/cpu/cpu$1/online
97 echo 0 > $SYSFS/devices/system/cpu/cpu$1/online
121 echo $FUNCNAME $cpu: unexpected online >&2
/openbmc/linux/Documentation/translations/zh_CN/core-api/
H A Dcpu_hotplug.rst385 online 对应ONLINE阶段中的状态
563 138: mm/vmscan:online
564 139: mm/vmstat:online
565 140: lib/percpu_cnt:online
566 141: acpi/cpu-drv:online
567 142: base/cacheinfo:online
568 143: virtio/net:online
569 144: x86/mce:online
570 145: printk:online
572 169: online
[all …]
/openbmc/linux/tools/testing/selftests/bpf/prog_tests/
H A Dperf_buffer.c54 bool *online; in serial_test_perf_buffer() local
61 &online, &on_len); in serial_test_perf_buffer()
66 if (online[i]) in serial_test_perf_buffer()
95 if (i >= on_len || !online[i]) { in serial_test_perf_buffer()
118 if (i >= on_len || !online[i]) in serial_test_perf_buffer()
146 free(online); in serial_test_perf_buffer()
H A Draw_tp_test_run.c15 bool *online = NULL; in test_raw_tp_test_run() local
22 err = parse_cpu_mask_file("/sys/devices/system/cpu/online", &online, in test_raw_tp_test_run()
58 if (!online[i]) in test_raw_tp_test_run()
85 free(online); in test_raw_tp_test_run()
/openbmc/linux/Documentation/ABI/testing/
H A Dsysfs-devices-online1 What: /sys/devices/.../online
5 The /sys/devices/.../online attribute is only present for
6 devices whose bus types provide .online() and .offline()
13 this file, the device bus type's .online() callback is executed
20 type's .online() is executed successfully.
H A Dsysfs-devices-system-xen_cpu12 What: /sys/devices/system/xen_cpu/xen_cpu#/online
16 Interface to online/offline Xen physical cpus
19 to online/offline physical cpus, except cpu0 due to several
/openbmc/linux/Documentation/admin-guide/
H A Dcputopology.rst61 offline: CPUs that are not online because they have been
66 online: CPUs that are online and being scheduled [cpu_online_mask]
69 brought online if they are present. [cpu_possible_mask]
80 being 32. Note also that CPUs 2 and 4-31 are not online but could be
81 brought online as they are both present and possible::
85 online: 0-1,3
92 online.)::
96 online: 0-1,3
/openbmc/openbmc/meta-ibm/recipes-core/systemd/
H A Dsystemd_%.bbappend27 FILES:${PN}:append:p10bmc = " ${systemd_system_unitdir}/systemd-networkd-wait-online.service.d/syst…
31 FILES:${PN}:append:genesis3 = " ${systemd_system_unitdir}/systemd-networkd-wait-online.service.d/sy…
32 FILES:${PN}:append:sbp1 = " ${systemd_system_unitdir}/systemd-networkd-wait-online.service.d/system…
33 FILES:${PN}:append:system1 = " ${systemd_system_unitdir}/systemd-networkd-wait-online.service.d/sys…
46 …ly-wait-for-one.conf ${D}${systemd_system_unitdir}/systemd-networkd-wait-online.service.d/systemd-…
51 # Genesis3 and SBP1 uses both BMC's RGMII MACs, so wait for only one to be online
53 install -d ${D}${systemd_system_unitdir}/systemd-networkd-wait-online.service.d/
54 …ly-wait-for-one.conf ${D}${systemd_system_unitdir}/systemd-networkd-wait-online.service.d/systemd-…
57 install -d ${D}${systemd_system_unitdir}/systemd-networkd-wait-online.service.d/
58 …ly-wait-for-one.conf ${D}${systemd_system_unitdir}/systemd-networkd-wait-online.service.d/systemd-…
[all …]
/openbmc/linux/drivers/power/supply/
H A Dtps65217_charger.c34 int online; member
83 if (charger->online) in tps65217_enable_charging()
98 charger->online = 1; in tps65217_enable_charging()
110 val->intval = charger->online; in tps65217_charger_get_property()
121 charger->prev_online = charger->online; in tps65217_charger_irq()
141 charger->online = 0; in tps65217_charger_irq()
144 if (charger->prev_online != charger->online) in tps65217_charger_irq()
H A D88pm860x_charger.c107 unsigned online:1; /* usb charger */ member
274 if (vbatt > CHARGE_THRESHOLD && info->online) in stop_charge()
317 (info->online) ? "online" : "N/A", in set_charging_fsm()
389 (info->online) ? "online" : "N/A", in set_charging_fsm()
408 info->online = 1; in pm860x_charger_handler()
411 info->online = 0; in pm860x_charger_handler()
529 if (info->present && info->online) in pm860x_vbattery_handler()
552 if (!info->online) { in pm860x_vchg_handler()
606 val->intval = info->online; in pm860x_usb_get_prop()
630 info->online = 1; in pm860x_init_charger()
[all …]
H A Dpower_supply_leds.c114 union power_supply_propval online; in power_supply_update_gen_leds() local
116 if (power_supply_get_property(psy, POWER_SUPPLY_PROP_ONLINE, &online)) in power_supply_update_gen_leds()
119 dev_dbg(&psy->dev, "%s %d\n", __func__, online.intval); in power_supply_update_gen_leds()
121 if (online.intval) in power_supply_update_gen_leds()
H A Dmax14656_charger_detector.c86 int online; member
152 chip->online = 1; in max14656_irq_worker()
154 chip->online = 0; in max14656_irq_worker()
216 val->intval = chip->online; in max14656_get_property()
262 chip->online = 0; in max14656_probe()
/openbmc/qemu/python/scripts/
H A Dmkvenv.py520 online: bool,
568 if online:
605 online: bool = False,
625 if not online:
662 online: bool = False,
714 pip_install(args=absent, online=online, wheels_dir=wheels_dir)
721 online,
731 online: bool = False,
799 online: bool = False,
963 online=args.online,
[all …]
/openbmc/linux/Documentation/core-api/
H A Dcpu_hotplug.rst36 other CPUs later online.
125 bring CPU4 back online::
640 138: mm/vmscan:online
641 139: mm/vmstat:online
642 140: lib/percpu_cnt:online
643 141: acpi/cpu-drv:online
645 143: virtio/net:online
646 144: x86/mce:online
647 145: printk:online
649 169: online
[all …]
H A Dmemory-hotplug.rst23 Generated when memory has successfully brought online. The callback may
63 - start_pfn is start_pfn of online/offline memory.
64 - nr_pages is # of pages of online/offline memory.
68 set/clear. It means a new(memoryless) node gets new memory by online and a
92 - synchronize against online/offline requests (e.g. via sysfs). This way, memory
93 block devices can only be accessed (.online/.state attributes) by user
99 device_hotplug_lock when adding memory and user space tries to online that
/openbmc/linux/kernel/irq/
H A Dmatrix.c19 bool online; member
82 BUG_ON(cm->online); in irq_matrix_online()
90 cm->online = true; in irq_matrix_online()
105 cm->online = false; in irq_matrix_offline()
140 if (!cm->online || cm->available <= maxavl) in matrix_find_best_cpu()
161 if (!cm->online || cm->managed_allocated > allocated) in matrix_find_best_cpu_managed()
222 if (cm->online) { in irq_matrix_reserve_managed()
272 if (cm->online) { in irq_matrix_remove_managed()
433 if (cm->online) in irq_matrix_free()
438 if (cm->online) in irq_matrix_free()
/openbmc/linux/drivers/staging/fieldbus/
H A Dfieldbus_dev.h67 bool online; member
99 void fieldbus_dev_online_changed(struct fieldbus_dev *fb, bool online);
111 bool online) {} in fieldbus_dev_online_changed() argument
/openbmc/openbmc/meta-openembedded/meta-networking/recipes-connectivity/mosquitto/files/
H A D2895.patch3 Subject: [PATCH] Mosquitto now waits for network-online when starting
23 +After=network-online.target
24 +Wants=network-online.target
/openbmc/linux/arch/mips/kernel/
H A Dpm-cps.c38 typedef unsigned (*cps_nc_entry_fn)(unsigned online, u32 *nc_ready_count);
84 static void coupled_barrier(atomic_t *a, unsigned online) in coupled_barrier() argument
98 while (atomic_read(a) < online) in coupled_barrier()
101 if (atomic_inc_return(a) == online * 2) { in coupled_barrier()
106 while (atomic_read(a) > online) in coupled_barrier()
114 unsigned online, left; in cps_pm_enter_state() local
132 online = cpumask_weight(coupled_mask); in cps_pm_enter_state()
138 online = 1; in cps_pm_enter_state()
167 coupled_barrier(&per_cpu(pm_barrier, core), online); in cps_pm_enter_state()
170 left = entry(online, nc_core_ready_count); in cps_pm_enter_state()
[all …]
/openbmc/linux/Documentation/arch/s390/
H A Ddriver-model.rst49 online:
50 An interface to set the device online and offline.
77 via the 'online' interface.
93 int online;
161 activated via the 'online' attribute. The driver should finally
171 verified that the device is not already online.
185 verified that the device is online.
194 * In online state, device detached (CIO_GONE) or last path gone
279 - Can be 'online' or 'offline'.
280 Piping 'on' or 'off' sets the chpid logically online/offline.
[all …]
/openbmc/linux/drivers/staging/media/atomisp/pci/camera/pipe/src/
H A Dpipe_binarydesc.c52 descr->online = false; in pipe_binarydesc_get_offline()
99 copy_descr->online = true; in ia_css_pipe_get_copy_binarydesc()
235 if (pipe->stream->config.online) { in ia_css_pipe_get_preview_binarydesc()
236 preview_descr->online = pipe->stream->config.online; in ia_css_pipe_get_preview_binarydesc()
355 if (pipe->stream->config.online) { in ia_css_pipe_get_video_binarydesc()
356 video_descr->online = pipe->stream->config.online; in ia_css_pipe_get_video_binarydesc()
578 if (pipe->stream->config.online && in ia_css_pipe_get_primary_binarydesc()
580 prim_descr->online = true; in ia_css_pipe_get_primary_binarydesc()
713 if (pipe->stream->config.online) { in ia_css_pipe_get_pre_de_binarydesc()
714 pre_de_descr->online = true; in ia_css_pipe_get_pre_de_binarydesc()
[all …]
/openbmc/openbmc/poky/meta/recipes-connectivity/kea/files/
H A Dkea-dhcp-ddns.service3 Wants=network-online.target
4 After=network-online.target
H A Dkea-dhcp6.service3 Wants=network-online.target
4 After=network-online.target

12345678910>>...16