Home
last modified time | relevance | path

Searched full:limit (Results 1 – 25 of 1163) sorted by relevance

12345678910>>...47

/openbmc/openbmc-test-automation/redfish/extended/
H A Dtest_power_capping.robot6 # PL Power Limit
35 [Documentation] Change active power limit with system power on and
36 ... Power limit active.
39 Set DCMI Power Limit And Verify ${max_power}
67 ${power}= Get DCMI Power Limit
69 ... msg=DCMI power limit should be ${max_power}.
73 Set DCMI Power Limit And Verify ${near_max_power_50}
77 [Documentation] Change active power limit with system power on and
78 ... deactivate power limit prior to change.
85 Set DCMI Power Limit And Verify ${power_setting}
[all …]
H A Dtest_escale_base.robot59 # Set the power limit via REST.
60 Set DCMI Power Limit Via REST ${test_power}
62 # Read the power limit using IPMI.
63 ${power_limit}= Get DCMI Power Limit
65 ... msg=Reading Power limit with IPMI failed after setting it with REST.
76 Set DCMI Power Limit And Verify ${test_power}
78 # Read the limit via REST.
79 ${power_limit}= Get DCMI Power Limit Via REST
81 ... msg=Reading power limit with REST failed after setting it with IPMI.
108 Set DCMI Power Limit And Verify ${mid_power}
[all …]
/openbmc/qemu/include/qemu/
H A Dratelimit.h40 static inline int64_t ratelimit_calculate_delay(RateLimit *limit, uint64_t n) in ratelimit_calculate_delay() argument
45 QEMU_LOCK_GUARD(&limit->lock); in ratelimit_calculate_delay()
46 if (!limit->slice_quota) { in ratelimit_calculate_delay()
50 assert(limit->slice_ns); in ratelimit_calculate_delay()
52 if (limit->slice_end_time < now) { in ratelimit_calculate_delay()
55 limit->slice_start_time = now; in ratelimit_calculate_delay()
56 limit->slice_end_time = now + limit->slice_ns; in ratelimit_calculate_delay()
57 limit->dispatched = 0; in ratelimit_calculate_delay()
60 limit->dispatched += n; in ratelimit_calculate_delay()
61 if (limit->dispatched < limit->slice_quota) { in ratelimit_calculate_delay()
[all …]
H A Dthrottle-options.h39 .help = "limit total I/O operations per second",\
43 .help = "limit read operations per second",\
47 .help = "limit write operations per second",\
51 .help = "limit total bytes per second",\
55 .help = "limit read bytes per second",\
59 .help = "limit write bytes per second",\
/openbmc/phosphor-dbus-interfaces/yaml/xyz/openbmc_project/Control/Power/
H A DCap.interface.yaml50 Exception Actions, taken if the Power Limit is exceeded and cannot be
51 controlled within the Correction time limit.
57 Correction Time Limit in microseconds. Maximum time taken to limit the
58 power after the platform power has reached the power limit before the
60 the system power usage constantly exceeds the specified power limit
61 for more than the Correction Time Limit interval. The Correction Time
62 Limit timeout automatically restarts if the system power meets or
63 drops below the Power Limit.
74 Exception actions, taken if the Power Limit is exceeded and cannot be
75 controlled within the Correction Time Limit.
/openbmc/openbmc-test-automation/lib/
H A Denergy_scale_utils.robot16 Get System Power Cap Limit
17 [Documentation] Get the allowed MAX and MIN power limit of the chassis.
38 # Current Limit State: No Active Power Limit
40 # Power Limit: 500 Watts
43 # The power limit setting can be obtained with the following:
55 Get DCMI Power Limit
64 Set DCMI Power Limit And Verify
65 [Documentation] Set system power limit via IPMI DCMI command.
69 # limit The power limit in watts
71 ${cmd}= Catenate dcmi power set_limit limit ${power_limit}
[all …]
/openbmc/qemu/hw/timer/
H A Dslavio_timer.c59 uint64_t limit; member
109 uint64_t count, limit; in slavio_timer_get_out() local
111 if (t->limit == 0) { /* free-run system or processor counter */ in slavio_timer_get_out()
112 limit = TIMER_MAX_COUNT32; in slavio_timer_get_out()
114 limit = t->limit; in slavio_timer_get_out()
116 count = limit - PERIODS_TO_LIMIT(ptimer_get_count(t->timer)); in slavio_timer_get_out()
118 trace_slavio_timer_get_out(t->limit, t->counthigh, t->count); in slavio_timer_get_out()
132 /* if limit is 0 (free-run), there will be no match */ in slavio_timer_irq()
133 if (t->limit != 0) { in slavio_timer_irq()
137 if (!slavio_timer_is_user(tc) && t->limit != 0) { in slavio_timer_irq()
[all …]
/openbmc/qemu/docs/devel/migration/
H A Ddirty-limit.rst1 Dirty limit
4 The dirty limit, short for dirty page rate upper limit, is a new capability
36 page rate value and the corresponding upper limit of the VM:
40 limit is specified by caller, therefore fetch it directly.
47 rate progressively down to the upper limit without oscillation. To
50 to the limit, which is used when the current dirty page rate is far
51 from the limit; the second is to add or subtract a fixed time when
52 the current dirty page rate is close to the limit.
60 to step PREPARE (1) until the dirty limit is reached.
68 In summary, thanks to the KVM dirty ring technology, the dirty limit
[all …]
/openbmc/qemu/target/i386/hvf/
H A Dx86.c54 uint32_t limit; in x86_read_segment_descriptor() local
65 limit = rvmcs(cpu->accel->fd, VMCS_GUEST_GDTR_LIMIT); in x86_read_segment_descriptor()
68 limit = rvmcs(cpu->accel->fd, VMCS_GUEST_LDTR_LIMIT); in x86_read_segment_descriptor()
71 if (sel.index * 8 >= limit) { in x86_read_segment_descriptor()
84 uint32_t limit; in x86_write_segment_descriptor() local
88 limit = rvmcs(cpu->accel->fd, VMCS_GUEST_GDTR_LIMIT); in x86_write_segment_descriptor()
91 limit = rvmcs(cpu->accel->fd, VMCS_GUEST_LDTR_LIMIT); in x86_write_segment_descriptor()
94 if (sel.index * 8 >= limit) { in x86_write_segment_descriptor()
95 printf("%s: gdt limit\n", __func__); in x86_write_segment_descriptor()
106 uint32_t limit = rvmcs(cpu->accel->fd, VMCS_GUEST_IDTR_LIMIT); in x86_read_call_gate() local
[all …]
H A Dx86_descr.c28 .limit = VMCS_GUEST_##seg##_LIMIT, \
35 int limit; member
50 return (uint32_t)rvmcs(cpu->accel->fd, vmx_segment_fields[seg].limit); in vmx_read_segment_limit()
79 desc->limit = rvmcs(cpu->accel->fd, vmx_segment_fields[seg].limit); in vmx_read_segment_descriptor()
88 wvmcs(cpu->accel->fd, sf->limit, desc->limit); in vmx_write_segment_descriptor()
99 vmx_desc->limit = x86_segment_limit(desc); in x86_segment_descriptor_to_vmx()
115 x86_set_segment_limit(desc, vmx_desc->limit); in vmx_segment_to_x86_descriptor()
/openbmc/openbmc/poky/meta/recipes-devtools/gcc/gcc/
H A D0025-gcc-testsuite-tweaks-for-mips-OE.patch77 + global do-what-limit
81 + if [info exists do-what-limit] then {
82 + # Demote run tests to $do-what-limit if set
85 + set do_what ${do-what-limit}
86 + set dg-do-what ${do-what-limit}
149 + global do-what-limit
157 + set do-what-limit link
165 + set do-what-limit run
168 + unset do-what-limit
176 + global do-what-limit
[all …]
/openbmc/u-boot/arch/x86/cpu/ivybridge/
H A Dmodel_206ax.c164 msr_t limit; in set_power_limits() local
199 /* Set long term power limit to TDP */ in set_power_limits()
200 limit.lo = 0; in set_power_limits()
201 limit.lo |= tdp & PKG_POWER_LIMIT_MASK; in set_power_limits()
202 limit.lo |= PKG_POWER_LIMIT_EN; in set_power_limits()
203 limit.lo |= (power_limit_1_val & PKG_POWER_LIMIT_TIME_MASK) << in set_power_limits()
206 /* Set short term power limit to 1.25 * TDP */ in set_power_limits()
207 limit.hi = 0; in set_power_limits()
208 limit.hi |= ((tdp * 125) / 100) & PKG_POWER_LIMIT_MASK; in set_power_limits()
209 limit.hi |= PKG_POWER_LIMIT_EN; in set_power_limits()
[all …]
/openbmc/qemu/hw/core/
H A Dptimer.c25 uint64_t limit; member
83 delta = s->delta = s->limit; in ptimer_reload()
102 if (s->enabled == 1 && s->limit == 0) { in ptimer_reload()
114 if (s->enabled == 1 && s->limit != 0) { in ptimer_reload()
133 * Artificially limit timeout rate to something in ptimer_reload()
175 if (s->delta == 0 || s->limit == 0) { in ptimer_tick()
176 /* If a "continuous trigger" policy is not used and limit == 0, in ptimer_tick()
189 s->delta = s->limit; in ptimer_tick()
265 if (!oneshot && s->delta == s->limit) { in ptimer_get_count()
270 if (counter == s->limit + DELTA_ADJUST) { in ptimer_get_count()
[all …]
/openbmc/openbmc/meta-openembedded/meta-oe/recipes-dbs/influxdb/influxdb/
H A Dinfluxdb.conf104 # CompactThroughput is the rate limit in bytes per second that we
109 # CompactThroughputBurst is the rate limit in bytes per second that we
120 # The maximum series allowed per database before writes are dropped. This limit can prevent
121 # high cardinality issues at the database level. This limit can be disabled by setting it to
125 # The maximum number of tag values per tag that are allowed before writes are dropped. This limit
126 # can prevent high cardinality tag values from being written to a measurement. This limit can be
162 # executed and exceeds this limit, an error is returned to the caller. This limit can be disabled
166 … The maximum time a query will is allowed to execute before being killed by the system. This limit
167 # can help prevent run away queries. Setting the value to 0 disables the limit.
170 # The time threshold when a query will be logged as a slow query. This limit can be set to help
[all …]
/openbmc/qemu/tests/migration-stress/guestperf/
H A Dcomparison.py139 # Looking at effect of dirty-limit with
141 Comparison("compr-dirty-limit-period", scenarios = [
142 Scenario("compr-dirty-limit-period-500",
144 Scenario("compr-dirty-limit-period-800",
146 Scenario("compr-dirty-limit-period-1000",
151 # Looking at effect of dirty-limit with
153 Comparison("compr-dirty-limit", scenarios = [
154 Scenario("compr-dirty-limit-10MB",
156 Scenario("compr-dirty-limit-20MB",
158 Scenario("compr-dirty-limit-50MB",
/openbmc/openbmc/poky/meta/files/common-licenses/
H A DNLPL1 NO LIMIT PUBLIC LICENSE
9 NO LIMIT PUBLIC LICENSE
14 0. No limit to do anything with this work and this license.
/openbmc/phosphor-dbus-interfaces/yaml/xyz/openbmc_project/Control/
H A DCFMLimit.interface.yaml2 Implement to provide a CFM upper limit for fan control. This can be used
7 - name: Limit
10 The CFM limit, 0 means disabled.
/openbmc/qemu/hw/pci/
H A Dpci_host.c57 static void pci_adjust_config_limit(PCIBus *bus, uint32_t *limit) in pci_adjust_config_limit() argument
59 if ((*limit > PCI_CONFIG_SPACE_SIZE) && in pci_adjust_config_limit()
61 *limit = PCI_CONFIG_SPACE_SIZE; in pci_adjust_config_limit()
77 uint32_t limit, uint32_t val, uint32_t len) in pci_host_config_write_common() argument
79 pci_adjust_config_limit(pci_get_bus(pci_dev), &limit); in pci_host_config_write_common()
80 if (limit <= addr) { in pci_host_config_write_common()
96 pci_dev->config_write(pci_dev, addr, val, MIN(len, limit - addr)); in pci_host_config_write_common()
100 uint32_t limit, uint32_t len) in pci_host_config_read_common() argument
104 pci_adjust_config_limit(pci_get_bus(pci_dev), &limit); in pci_host_config_read_common()
105 if (limit <= addr) { in pci_host_config_read_common()
[all …]
H A Dpci_bridge.c128 /* accessor function to get bridge filtering limit */
131 pcibus_t limit; in pci_bridge_get_limit() local
133 limit = pci_config_get_io_base(bridge, in pci_bridge_get_limit()
135 limit |= 0xfff; /* PCI bridge spec 3.2.5.6. */ in pci_bridge_get_limit()
138 limit = pci_config_get_pref_base( in pci_bridge_get_limit()
141 limit = pci_config_get_memory_base(bridge, PCI_MEMORY_LIMIT); in pci_bridge_get_limit()
143 limit |= 0xfffff; /* PCI bridge spec 3.2.5.{1, 8}. */ in pci_bridge_get_limit()
145 return limit; in pci_bridge_get_limit()
156 pcibus_t limit = pci_bridge_get_limit(bridge_dev, type); in pci_bridge_init_alias() local
157 /* TODO: this doesn't handle base = 0 limit = 2^64 - 1 correctly. in pci_bridge_init_alias()
[all …]
H A Dpcie_host.c42 uint32_t limit; in pcie_mmcfg_data_write() local
48 limit = pci_config_size(pci_dev); in pcie_mmcfg_data_write()
49 pci_host_config_write_common(pci_dev, addr, limit, val, len); in pcie_mmcfg_data_write()
60 uint32_t limit; in pcie_mmcfg_data_read() local
66 limit = pci_config_size(pci_dev); in pcie_mmcfg_data_read()
67 return pci_host_config_read_common(pci_dev, addr, limit, len); in pcie_mmcfg_data_read()
/openbmc/qemu/util/
H A Dblock-helpers.h6 /* lower limit is sector size */
10 * upper limit is arbitrary, 2 MiB looks sufficient for all sensible uses, and
11 * matches qcow2 cluster size limit
/openbmc/openbmc-test-automation/systest/
H A Dproc_freq_check.robot26 ${min_freq_designated_lower_limit}= Get CPU Min Frequency Limit
31 ${err_msg}= Catenate Reported CPU frequency below designated limit.
36 ${max_freq_designated_limit}= Get CPU Max Frequency Limit
40 ${err_msg}= Catenate Reported CPU frequency above designated limit.
/openbmc/openbmc/meta-security/recipes-scanners/clamav/files/
H A Dclamd.conf16 # Value of 0 disables the limit.
110 # Close the connection when the data size limit is exceeded.
111 # The value should match your MTA's limit for a maximum attachment size.
115 # Limit port range.
437 # Value of 0 disables the limit
438 # Note: disabling this limit or setting it too high may result in severe damage
443 # Files larger than this limit won't be scanned. Affects the input file itself
446 # Value of 0 disables the limit.
447 # Note: disabling this limit or setting it too high may result in severe damage
455 # Note: setting this limit too high may result in severe damage to the system.
[all …]
/openbmc/qemu/hw/sparc64/
H A Dtrace-events22 … char *dis, void *p, uint64_t limit, uint64_t t, uint64_t dt) "%s set_limit limit=0x%"PRIx64 " (%s…
23 sparc64_cpu_tick_set_limit_zero(const char *name) "%s set_limit limit=ZERO - not starting timer"
/openbmc/openbmc/meta-openembedded/meta-initramfs/recipes-kernel/kexec/kexec-tools-klibc/
H A Dpowerpc_change-the-memory-size-limit.patch4 Subject: [PATCH] powerpc: change the memory size limit
6 When run "kexec" in powerpc board, the kexec has a limit that
8 some kernel size exceed the limit. So we need to change the limit,

12345678910>>...47