Home
last modified time | relevance | path

Searched refs:need (Results 1 – 25 of 2743) sorted by relevance

12345678910>>...110

/openbmc/u-boot/drivers/mtd/ubi/
H A Dmisc.c95 int need = ubi->beb_rsvd_level - ubi->beb_rsvd_pebs; in ubi_update_reserved() local
97 if (need <= 0 || ubi->avail_pebs == 0) in ubi_update_reserved()
100 need = min_t(int, need, ubi->avail_pebs); in ubi_update_reserved()
101 ubi->avail_pebs -= need; in ubi_update_reserved()
102 ubi->rsvd_pebs += need; in ubi_update_reserved()
103 ubi->beb_rsvd_pebs += need; in ubi_update_reserved()
104 ubi_msg(ubi, "reserved more %d PEBs for bad PEB handling", need); in ubi_update_reserved()
/openbmc/linux/scripts/
H A Dsphinx-pre-install21 my $need = 0;
133 $need++;
390 return if (!$need && !$optional);
459 return if (!$need && !$optional);
834 $need++ if ($need_sphinx);
883 my $old_need = $need;
895 $need = $old_need;
976 if ($need == 1) {
978 } elsif ($need) {
994 if ($need == 1) {
[all …]
/openbmc/qemu/target/openrisc/
H A Dmmu.c37 target_ulong addr, int need, bool super) in get_phys_mmu() argument
50 if (need & PAGE_EXEC) { in get_phys_mmu()
81 need, match, valid, right, (need & right) ? "OK" : "FAIL"); in get_phys_mmu()
84 if (likely(need & right)) { in get_phys_mmu()
89 if (need & valid) { in get_phys_mmu()
90 return need & PAGE_EXEC ? EXCP_IPF : EXCP_DPF; in get_phys_mmu()
92 return need & PAGE_EXEC ? EXCP_ITLBMISS : EXCP_DTLBMISS; in get_phys_mmu()
121 int need = (access_type == MMU_INST_FETCH ? PAGE_EXEC in openrisc_cpu_tlb_fill() local
124 excp = get_phys_mmu(cpu, &phys_addr, &prot, addr, need, super); in openrisc_cpu_tlb_fill()
/openbmc/linux/drivers/mtd/ubi/
H A Dmisc.c94 int need = ubi->beb_rsvd_level - ubi->beb_rsvd_pebs; in ubi_update_reserved() local
96 if (need <= 0 || ubi->avail_pebs == 0) in ubi_update_reserved()
99 need = min_t(int, need, ubi->avail_pebs); in ubi_update_reserved()
100 ubi->avail_pebs -= need; in ubi_update_reserved()
101 ubi->rsvd_pebs += need; in ubi_update_reserved()
102 ubi->beb_rsvd_pebs += need; in ubi_update_reserved()
103 ubi_msg(ubi, "reserved more %d PEBs for bad PEB handling", need); in ubi_update_reserved()
/openbmc/openbmc/meta-openembedded/meta-oe/recipes-devtools/yajl/yajl/
H A DCVE-2022-24795.patch40 need = buf->len;
42 - while (want >= (need - buf->used)) need <<= 1;
47 + while (want >= (need - buf->used)) {
48 + if (need >= (size_t)((size_t)(-1)<<1)>>1) {
49 + /* need would overflow. */
52 + need <<= 1;
55 if (need != buf->len) {
56 buf->data = (unsigned char *) YA_REALLOC(buf->alloc, buf->data, need);
/openbmc/linux/scripts/coccinelle/api/
H A Dplatform_no_drv_owner.cocci127 msg = "No need to set .owner here. The core will do it."
134 msg = "No need to set .owner here. The core will do it."
141 msg = "No need to set .owner here. The core will do it."
148 msg = "No need to set .owner here. The core will do it."
157 msg = "No need to set .owner here. The core will do it."
164 msg = "No need to set .owner here. The core will do it."
171 msg = "No need to set .owner here. The core will do it."
178 msg = "No need to set .owner here. The core will do it."
/openbmc/linux/tools/virtio/ringtest/
H A Dring.c189 bool need; in kick_available() local
194 need = need_event(event->kick_index, in kick_available()
199 if (need) in kick_available()
256 bool need; in call_used() local
262 need = need_event(event->call_index, in call_used()
268 if (need) in call_used()
H A Dvirtio_ring_0_9.c228 bool need; in kick_available() local
233 need = vring_need_event(vring_avail_event(&ring), in kick_available()
238 if (need) in kick_available()
321 bool need; in call_used() local
326 need = vring_need_event(vring_used_event(&ring), in call_used()
331 if (need) in call_used()
/openbmc/u-boot/doc/device-tree-bindings/clock/
H A Drockchip,rk3399-dmc.txt4 - rockchip,cru: this driver should access cru regs, so need get cru here
5 - rockchip,pmucru: this driver should access pmucru regs, so need get pmucru here
6 - rockchip,pmugrf: this driver should access pmugrf regs, so need get pmugrf here
7 - rockchip,pmusgrf: this driver should access pmusgrf regs, so need get pmusgrf here
8 - rockchip,cic: this driver should access cic regs, so need get cic here
/openbmc/linux/drivers/media/v4l2-core/
H A DKconfig35 # Used by drivers that need tuner.ko
39 # Used by drivers that need v4l2-jpeg.ko
43 # Used by drivers that need v4l2-h264.ko
47 # Used by drivers that need v4l2-vp9.ko
51 # Used by drivers that need v4l2-mem2mem.ko
86 # Used by drivers that need Videobuf modules
/openbmc/linux/fs/ceph/
H A Dmdsmap.c67 size_t need; \
69 need = sizeof(type) * n; \
70 ceph_decode_need(p, end, need, bad); \
71 *p += need; \
77 size_t need; \
80 ceph_decode_need(p, end, need, bad); \
81 *p += need; \
363 size_t need; in ceph_mdsmap_decode() local
365 need = sizeof(u32) * n; in ceph_mdsmap_decode()
366 ceph_decode_need(p, end, need, bad_ext); in ceph_mdsmap_decode()
[all …]
/openbmc/qemu/docs/devel/
H A Dblock-coroutine-wrapper.rst7 coroutine_fn specifier. Still, sometimes we need to call them from
8 non-coroutine context; for this we need to start a coroutine, run the
10 BDRV_POLL_WHILE() loop. To run a coroutine we need a function with one
24 ``bdrv_co_foo(<some args>)`` and need a non-coroutine interface for it,
28 1. You need ``bdrv_foo`` declaration somewhere (for example, in
36 2. You need to feed this declaration to block-coroutine-wrapper script.
/openbmc/openbmc/poky/documentation/toaster-manual/
H A Dstart.rst9 This chapter describes how you need to prepare your system in order to
15 Before you can use Toaster, you need to first set up your build system
19 also need to do an additional install of pip3. ::
37 You need to install the packages that Toaster requires. Use this
49 If you need to remove something, the following works::
/openbmc/linux/tools/perf/Documentation/
H A Dandroid.txt9 1. You need to download and install the Android Native Development Kit (NDK).
50 You need to run make with the NDK toolchain and sysroot defined above:
58 You need to connect to your Android device/emulator using adb.
62 If you also want to use perf-archive you need busybox tools for Android.
63 For installing perf-archive, you first need to replace #!/bin/bash with #!/system/bin/sh:
70 Some perf features need environment variables to run properly.
71 You need to set these before running perf on the target:
/openbmc/linux/drivers/usb/atm/
H A DKconfig12 modem to your computer's USB port. You will then need to choose your
25 modem. In order to use your modem you will need to install the
37 AccessRunner chipset. In order to use your modem you will need to
49 or eagle chipset. In order to use your modem you will need to
60 another USB DSL drivers. In order to use your modem you will need to
62 and reception as module parameters. You may need to initialize
/openbmc/linux/fs/nls/
H A DKconfig45 in so-called DOS codepages. You need to include the appropriate
57 in so-called DOS codepages. You need to include the appropriate
82 so-called DOS codepages. You need to include the appropriate
98 so-called DOS codepages. You need to include the appropriate
113 so-called DOS codepages. You need to include the appropriate
124 so-called DOS codepages. You need to include the appropriate
135 so-called DOS codepages. You need to include the appropriate
146 so-called DOS codepages. You need to include the appropriate
157 so-called DOS codepages. You need to include the appropriate
168 so-called DOS codepages. You need to include the appropriate
[all …]
/openbmc/linux/Documentation/core-api/
H A Didr.rst34 If you need to change the pointer associated with an ID, you can call
40 Some users need to allocate IDs larger than ``INT_MAX``. So far all of
42 idr_alloc_u32(). If you need IDs that will not fit in a u32,
45 If you need to allocate IDs sequentially, you can use
51 iterator-style idr_for_each_entry(). You may need to use
63 If you need to take a lock while allocating a new ID from the IDR,
64 you may need to pass a restrictive set of GFP flags, which can lead
/openbmc/openbmc-test-automation/docs/
H A Dredfish_request_via_mTLS.md44 - Original robot code of redfish request doesn’t need to modify. It will send
59 purposes. Therefore, some test cases need to write a new one to match it for
61 username) Some cases don’t need to be tested because the purpose of them are
69 not need to use mTLS to authenticate login and logout. It can be replaced as
77 don't need to create a session first. Therefore, there is no need to test
/openbmc/linux/drivers/s390/scsi/
H A Dzfcp_erp.c132 need = 0; in zfcp_erp_handle_failed()
136 need = 0; in zfcp_erp_handle_failed()
141 need = 0; in zfcp_erp_handle_failed()
150 need = 0; in zfcp_erp_handle_failed()
158 return need; in zfcp_erp_handle_failed()
197 return need; in zfcp_erp_required_act()
210 return need; in zfcp_erp_required_act()
228 switch (need) { in zfcp_erp_setup_act()
275 erp_action->type = need; in zfcp_erp_setup_act()
291 if (!need) { in zfcp_erp_action_enqueue()
[all …]
/openbmc/openbmc/meta-openembedded/meta-python/recipes-devtools/python/python3-ninja/
H A Dno-scikit-build.patch1 We don't need to build ninja so there's no need to use scikit-build,
2 as we just need the python module with it's one ninja() function.
/openbmc/openbmc/poky/bitbake/lib/bb/tests/runqueue-tests/classes/
H A Dbase.bbclass154 # Return - False - We need this dependency
169 # We only need to trigger populate_lic through direct dependencies
173 # We only need to trigger packagedata through direct dependencies
174 # but need to preserve packagedata on packagedata links
187 # do_package_write_* and do_package doesn't need do_package
190 # do_package_write_* need do_populate_sysroot as they're mainly postinstall dependencies
193 # do_package/packagedata/package_qa don't need do_populate_sysroot
207 # Native/Cross populate_sysroot need their dependencies
210 # Target populate_sysroot depended on by cross tools need to be installed
217 # Target populate_sysroot need their dependencies
/openbmc/openbmc/poky/documentation/migration-guides/
H A Dmigration-4.2.rst83 to include such checksums. So, in case you need to add the list of checksums
165 workspace layer enabled and you wish to retain it, you will need to manually
169 need it).
179 available on the build host. Most use cases with runqemu only need
185 However, if you need the qemu machine to be reachable from the
204 if triggered. If you prefer to avoid this you will need to adjust the value
244 code reading this from ``/etc/os-release`` it may need to be updated.
253 you will need to remove this setting.
260 is no longer needed as of Linux kernel 5.6. If you still need ``rng-tools``
262 image. If you additionally need rngd to be started as a service you will also
[all …]
/openbmc/u-boot/doc/
H A DREADME.nios213 To add a new board/configuration (eg, mysystem) to u-boot, you will need
32 You will need to add additional properties to the dts. Please find an
41 2. If you use SPI/EPCS or I2C, you will need to add aliases to number
47 Next, you will need a default config file. You may start with
55 You will need to change the names of board header file and device tree,
86 You will need to change the environment variables location and setting,
/openbmc/linux/Documentation/scheduler/
H A Dsched-arch.rst11 locked. This is usually not a problem unless switch_to may need to
24 Your cpu_idle routines need to obey the following rules:
31 threads need only ever query need_resched, and may never set or
37 4. The only time interrupts need to be disabled when checking
52 need an interrupt to wake them up when need_resched goes high.
/openbmc/openbmc/meta-openembedded/meta-oe/recipes-dbs/psqlodbc/
H A Dpsqlodbc_16.00.0000.bb9 You need to install this package if you want to use an application that \
11 access a PostgreSQL database. This package would need to be installed \
13 server can be on a different machine and does not need any additional \
60 # The tests need a local PostgreSQL server running

12345678910>>...110