Home
last modified time | relevance | path

Searched full:need (Results 1 – 25 of 8100) sorted by relevance

12345678910>>...324

/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
69 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
[all …]
/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/qemu/target/openrisc/
H A Dmmu.c38 target_ulong addr, int need, bool super) in get_phys_mmu() argument
49 not match, zap the one we don't need. */ in get_phys_mmu()
51 if (need & PAGE_EXEC) { in get_phys_mmu()
81 "MMU lookup: need %d match %d valid %d right %d -> %s\n", in get_phys_mmu()
82 need, match, valid, right, (need & right) ? "OK" : "FAIL"); in get_phys_mmu()
85 if (likely(need & right)) { in get_phys_mmu()
90 if (need & valid) { in get_phys_mmu()
91 return need & PAGE_EXEC ? EXCP_IPF : EXCP_DPF; in get_phys_mmu()
93 return need & PAGE_EXEC ? EXCP_ITLBMISS : EXCP_DTLBMISS; in get_phys_mmu()
122 int need = (access_type == MMU_INST_FETCH ? PAGE_EXEC in openrisc_cpu_tlb_fill() local
[all …]
/openbmc/linux/drivers/net/wireless/intel/iwlwifi/cfg/
H A D22000.c157 * If the device doesn't support HE, no need to have that many buffers.
188 * so we need to restrict the size of transmitted aggregation to the
224 * so we need to restrict the size of transmitted aggregation to the
237 * so we need to restrict the size of transmitted aggregation to the
250 * so we need to restrict the size of transmitted aggregation to the
262 * so we need to restrict the size of transmitted aggregation to the
275 * so we need to restrict the size of transmitted aggregation to the
288 * so we need to restrict the size of transmitted aggregation to the
300 * so we need to restrict the size of transmitted aggregation to the
314 * so we need to restrict the size of transmitted aggregation to the
[all …]
/openbmc/u-boot/drivers/serial/
H A DKconfig32 In various cases, we need to specify which of the UART devices that
191 You will need to provide parameters to make this work. The driver will
198 You will need to provide parameters to make this work. The driver will
206 You will need to provide parameters to make this work. The
215 You will need to provide parameters to make this work. The
223 will need to provide parameters to make this work. The driver will
231 will need to provide parameters to make this work. The driver will
238 will need to provide parameters to make this work. The driver will
254 will need to provide parameters to make this work. The driver will
262 will need to provide parameters to make this work. The driver will
[all …]
/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/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/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/linux/Documentation/devicetree/bindings/sound/
H A Dsirf-audio.txt9 - hp-pa-gpios: Need to be present if the board need control external
11 - spk-pa-gpios: Need to be present if the board need control external
13 - hp-switch-gpios: Need to be present if the board capable to detect jack
/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/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/Documentation/filesystems/
H A Djournalling.rst10 The journalling layer is easy to use. You need to first of all create a
20 Once you have got your journal_t object you need to 'mount' or load the
25 does not need to be processed (or even need not have valid contents), it
38 You still need to actually journal your filesystem changes, this is done
39 by wrapping them into transactions. Additionally you also need to wrap
52 Inside each transaction you need to wrap the modifications to the
54 need to call jbd2_journal_get_create_access() /
60 buffer, and once you are have done so you need to call
100 strategy. Why? Because, if you do a delete, you need to ensure you
116 that need processing when the transaction commits.
[all …]
/openbmc/libbej/src/
H A Dbej_common.c29 // Only need to encode 0x00 or 0xFF in bejIntLengthOfValue()
49 // If the value is positive and encoded MSBbit is 1 we need to add 0x00 to in bejIntLengthOfValue()
56 // If the value is negative and encoded MSBbit is 0 we need to add 0xFF to in bejIntLengthOfValue()
71 // Even if the value is 0, we need a byte for that. in bejNnintEncodingSizeOfUInt()
75 // Need 1 byte to add the nnint length. in bejNnintEncodingSizeOfUInt()
81 // From the size of the encoded value, we need 1 byte for the length field. in bejNnintLengthFieldOfUInt()
/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
126 recipes or bbappends, you will need to switch to using :term:`PACKAGE_PREPROCESS_FUNCS`
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
235 image symlink creation, you also now need to set :term:`IMAGE_NAME` to still have
244 code reading this from ``/etc/os-release`` it may need to be updated.
247 signing. If you do not need this and wish to reclaim some space/avoid the dependency
[all …]
/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/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/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/openbmc/meta-openembedded/meta-python/recipes-devtools/python/python3-prctl/
H A D0001-support-cross-complication.patch19 # - Need gcc
20 # - Need C headers
21 # - Need libcap headers
39 - sys.stderr.write("You need to install gcc to build this module\n")
45 - sys.stderr.write("You need to install libc development headers to build this module\n")
51 - sys.stderr.write("You need to install libcap development headers to build this module\n")
/openbmc/linux/mm/
H A Dpage_ext.c33 * is the need callback which is mandatory if user wants to avoid useless
37 * The need callback is used to decide whether extended memory allocation is
40 * allocating huge chunk of memory, each clients represent their need of
41 * extra memory through the need callback. If one of the need callbacks
44 * none of need callbacks return true, memory isn't needed at all in this boot
48 * When need callback returns true, page_ext checks if there is a request for
73 .need = need_page_idle,
106 bool need = false; in invoke_need_callbacks() local
109 if (page_ext_ops[i]->need()) { in invoke_need_callbacks()
118 if (page_ext_ops[i]->need()) { in invoke_need_callbacks()
[all …]
/openbmc/linux/crypto/
H A Dcrypto_engine.c37 * @req: the request need to be finalized
130 * We'll need it on completion (crypto_finalize_request). in crypto_pump_requests()
142 /* Until here we get the request need to be encrypted successfully */ in crypto_pump_requests()
233 * @req: the request need to be listed into the engine queue
263 * @req: the request need to be listed into the engine queue
275 * @req: the request need to be listed into the engine queue
288 * @req: the request need to be listed into the engine queue
301 * @req: the request need to be listed into the engine queue
314 * @req: the request need to be listed into the engine queue
327 * @req: the request need to be listed into the engine queue
[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/docs/designs/oem/ibm/
H A Dsystem-power-mode.md12 the system power mode and idle power save modes. We need the ability to set and
21 an Active state. Anytime the OCC state changes to active, the BMC will need to
23 need to send the commands if the user changes the mode or idle power save
34 runtime, the BMC will need to send the mode and the idle power saver settings to
57 Defaults will need to be configurable by the system owner (via JSON file)
69 Code will need to trigger off of OCC state changes. The kernel currently sends a
102 Documentation impact - need to document new parameters Performance impact -
/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/linux/tools/testing/selftests/bpf/
H A Dbpf_experimental.h17 * The 'meta' parameter is rewritten by the verifier, no need for BPF
32 * The 'meta' parameter is rewritten by the verifier, no need for BPF
46 * The 'meta' parameter is rewritten by the verifier, no need for BPF
59 * The 'meta' and 'off' parameters are rewritten by the verifier, no need
75 * The 'meta' and 'off' parameters are rewritten by the verifier, no need
113 * The 'meta' and 'off' parameters are rewritten by the verifier, no need
140 * The 'meta' parameter is rewritten by the verifier, no need for BPF
155 * The 'meta' parameter is rewritten by the verifier, no need for BPF
/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

12345678910>>...324