Home
last modified time | relevance | path

Searched full:calls (Results 1 – 25 of 3438) sorted by relevance

12345678910>>...138

/openbmc/linux/arch/powerpc/platforms/cell/
H A Dspu_syscalls.c26 struct spufs_calls *calls = NULL; in spufs_calls_get() local
29 calls = rcu_dereference(spufs_calls); in spufs_calls_get()
30 if (calls && !try_module_get(calls->owner)) in spufs_calls_get()
31 calls = NULL; in spufs_calls_get()
34 return calls; in spufs_calls_get()
37 static inline void spufs_calls_put(struct spufs_calls *calls) in spufs_calls_put() argument
39 BUG_ON(calls != spufs_calls); in spufs_calls_put()
52 static inline void spufs_calls_put(struct spufs_calls *calls) { } in spufs_calls_put() argument
60 struct spufs_calls *calls; in SYSCALL_DEFINE4() local
62 calls = spufs_calls_get(); in SYSCALL_DEFINE4()
[all …]
/openbmc/linux/drivers/misc/cxl/
H A Dbase.c24 struct cxl_calls *calls = NULL; in cxl_calls_get() local
27 calls = rcu_dereference(cxl_calls); in cxl_calls_get()
28 if (calls && !try_module_get(calls->owner)) in cxl_calls_get()
29 calls = NULL; in cxl_calls_get()
32 return calls; in cxl_calls_get()
35 static inline void cxl_calls_put(struct cxl_calls *calls) in cxl_calls_put() argument
37 BUG_ON(calls != cxl_calls); in cxl_calls_put()
50 static inline void cxl_calls_put(struct cxl_calls *calls) { } in cxl_calls_put() argument
69 struct cxl_calls *calls; in cxl_slbia() local
71 calls = cxl_calls_get(); in cxl_slbia()
[all …]
/openbmc/linux/Documentation/powerpc/
H A Deeh-pci-error-recovery.rst177 It saves the device BAR's and then calls rpaphp_unconfig_pci_adapter().
184 any bridges underneath. It then calls rpaphp_enable_pci_slot(),
201 calls
204 calls
207 calls
210 calls
213 calls
216 calls
219 calls
223 calls
[all …]
/openbmc/linux/tools/testing/selftests/bpf/verifier/
H A Dcalls.c2 "calls: invalid kfunc call not eliminated",
13 "calls: invalid kfunc call unreachable",
25 "calls: invalid kfunc call: ptr_to_mem to struct with non-scalar",
40 "calls: invalid kfunc call: ptr_to_mem to struct with nesting depth > 4",
55 "calls: invalid kfunc call: ptr_to_mem to struct with FAM",
70 "calls: invalid kfunc call: reg->type != PTR_TO_CTX",
85 "calls: invalid kfunc call: void * not allowed in func proto without mem size arg",
100 "calls: trigger reg2btf_ids[reg->type] for reg->type > __BPF_REG_TYPE_MAX",
119 "calls: invalid kfunc call: reg->off must be zero when passed to release kfunc",
142 "calls: invalid kfunc call: don't match first member type when passed to release kfunc",
[all …]
/openbmc/libbej/include/libbej/
H A Dbej_decoder_core.h64 * @brief Calls when a Set is detected.
69 * @brief Calls when an end of a Set is found.
74 * @brief Calls when an array is detected.
79 * @brief Calls when an end of an array is found.
84 * @brief Calls after a property is finished unless this is the last
91 * @brief Calls when a Null property is found or the property length is
97 * @brief Calls when an Integer property is found.
103 * @brief Calls when an Enum property is found.
109 * @brief Calls when a String property is found.
115 * @brief Calls when a Real value property is found.
[all …]
/openbmc/u-boot/doc/
H A DREADME.trace65 69,712 function calls
66 0 untracked function calls
67 73,373 traced function calls
70 66,491 calls not traced due to depth
73 1,279,450 function calls
74 0 untracked function calls
75 950,490 traced function calls (333217 dropped due to overflow)
78 1,275,767 calls not traced due to depth
79 =>trace calls 0 e00000
105 calls on the left and little marks representing the start and end of each
[all …]
/openbmc/linux/include/uapi/linux/
H A Dsockios.h7 * Definitions of the socket-level I/O control calls.
51 /* Routing table calls. */
113 /* ARP cache control calls. */
114 /* 0x8950 - 0x8952 * obsolete calls, don't re-use */
119 /* RARP cache control calls. */
124 /* Driver configuration calls */
129 /* DLCI configuration calls */
137 /* bonding calls */
146 /* bridge calls */
156 /* Device private ioctl calls */
[all …]
/openbmc/linux/Documentation/mm/
H A Dpage_frags.rst18 and tracks allows multiple calls to make use of a cached page. The
19 advantage to doing this is that multiple calls to get_page can be avoided
21 this caching it is required that any calls to the cache be protected by
27 netdev_alloc_frag and __netdev_alloc_skb calls. The napi_alloc_cache is
28 used by callers of the __napi_alloc_frag and __napi_alloc_skb calls. The
29 main difference between these two calls is the context in which they may be
/openbmc/linux/Documentation/i2c/
H A Ddev-interface.rst93 the means of read() and write() calls. In particular, so-called combined
147 You can do plain I2C transactions by using read(2) and write(2) calls.
185 1) Your program opens /dev/i2c-N and calls ioctl() on it, as described in
188 2) These open() and ioctl() calls are handled by the i2c-dev kernel
193 3) Some ioctl() calls are for administrative tasks and are handled by
198 4) Other ioctl() calls are converted to in-kernel function calls by
205 difference between these calls that came from user-space through i2c-dev
206 and calls that would have been performed by kernel I2C chip drivers
212 implementing these standard calls. i2c.h:i2c_get_functionality() calls
214 i2c-core-smbus.c:i2c_smbus_xfer() calls either
[all …]
/openbmc/qemu/docs/specs/
H A Dppc-spapr-hcalls.rst2 sPAPR hypervisor calls
6 a set of hypervisor calls (a.k.a. hcalls) defined in the Linux on Power
13 In addition to those calls, we have added our own private hypervisor
14 calls which are mostly used as a private interface between the firmware
31 calls our private H_RTAS hypervisor call to pass the RTAS calls to QEMU.
53 PAPR and LoPAR provides a set of hypervisor calls to perform cacheable or
/openbmc/linux/Documentation/process/
H A Dadding-syscalls.rst16 the alternatives might be suitable instead. Although system calls are the
63 together with the corresponding follow-up system calls --
68 For simpler system calls that only take a couple of arguments, the preferred
79 For more sophisticated system calls that involve a larger number of arguments,
125 what it means to use the :manpage:`poll(2)` family of system calls on that file
146 (For more details on the rationale of the \*at() calls, see the
179 To make new system calls easy to review, it's best to divide up the patchset
209 calls are invoked::
222 note that if multiple new system calls are added in the same merge window,
269 Compatibility System Calls (Generic)
[all …]
/openbmc/linux/arch/hexagon/
H A DMakefile13 # We must use long-calls:
14 KBUILD_CFLAGS += -mlong-calls
16 # Modules must use either long-calls, or use pic/plt.
17 # Use long-calls for now, it's easier. And faster.
20 KBUILD_CFLAGS_MODULE += -mlong-calls
/openbmc/linux/tools/perf/scripts/python/bin/
H A Dexport-to-postgresql-report3 # args: [database name] [columns] [calls]
13 echo "usage: export-to-postgresql-report [database name] [columns] [calls]"
19 calls=$3
29 perf script $@ -s "$PERF_EXEC_PATH"/scripts/python/export-to-postgresql.py $dbname $columns $calls
H A Dexport-to-sqlite-report3 # args: [database name] [columns] [calls]
13 echo "usage: export-to-sqlite-report [database name] [columns] [calls]"
19 calls=$3
29 perf script $@ -s "$PERF_EXEC_PATH"/scripts/python/export-to-sqlite.py $dbname $columns $calls
/openbmc/linux/Documentation/driver-api/gpio/
H A Dlegacy.rst7 These calls use the gpio_* naming prefix. No other calls should use that
79 standard GPIO calls should have Kconfig entries which depend on GPIOLIB. The
80 GPIO calls are available, either as "real code" or as optimized-away stubs,
119 A number that's not valid will be rejected by calls which may request
141 be checked, since the get/set calls don't have error returns and since
142 misconfiguration is possible. You should normally issue these calls from
168 Use the following calls to access such GPIOs::
181 The get/set calls have no error returns because "invalid GPIO" should have
184 return zero. Also, using these calls for GPIOs that can't safely be accessed
188 calls to access the GPIO value in cases where the GPIO number (and for
[all …]
/openbmc/linux/tools/perf/pmu-events/arch/x86/silvermont/
H A Dpipeline.json7 …ict the following branch types: conditional branches, direct calls and jumps, indirect calls and j…
15 …ict the following branch types: conditional branches, direct calls and jumps, indirect calls and j…
24 …ict the following branch types: conditional branches, direct calls and jumps, indirect calls and j…
33 …ict the following branch types: conditional branches, direct calls and jumps, indirect calls and j…
42 …ict the following branch types: conditional branches, direct calls and jumps, indirect calls and j…
51 …ict the following branch types: conditional branches, direct calls and jumps, indirect calls and j…
60 …ict the following branch types: conditional branches, direct calls and jumps, indirect calls and j…
69 …ict the following branch types: conditional branches, direct calls and jumps, indirect calls and j…
78 …ict the following branch types: conditional branches, direct calls and jumps, indirect calls and j…
87 …ict the following branch types: conditional branches, direct calls and jumps, indirect calls and j…
/openbmc/linux/Documentation/infiniband/
H A Dcore_locking.rst54 if multiple function calls using the same object are run
57 The IB midlayer does not perform any serialization of function calls.
64 information between different calls of ib_poll_cq() is not defined.
102 consumers when it calls ib_register_device(), all initialization
108 semaphores that could cause deadlock if a consumer calls back into
109 the driver across these calls.
/openbmc/linux/Documentation/crypto/
H A Dintro.rst32 however, does not discuss all API calls available to data transformation
57 following phases that are reflected in the API calls applicable to such
67 When using the initialization API calls, a cipher handle is created and
69 API calls that refer to the data structure type a consumer is expected
70 to receive and subsequently to use. The initialization API calls have
/openbmc/linux/scripts/
H A DMakefile.kasan4 # Safe for compiler to generate meminstrinsic calls in uninstrumented files.
7 # Don't let compiler generate memintrinsic calls in uninstrumented files
50 # Instrument memcpy/memset/memmove calls by using instrumented __asan_mem*()
62 instrumentation_flags := $(call cc-param,hwasan-instrument-with-calls=1)
71 # Instrument memcpy/memset/memmove calls by using instrumented __hwasan_mem*().
/openbmc/linux/Documentation/bpf/standardization/
H A Dabi.rst19 * R0: return value from function calls, and exit value for BPF programs
20 * R1 - R5: arguments for function calls
21 * R6 - R9: callee saved registers that function calls will preserve
25 necessary across calls.
/openbmc/u-boot/lib/
H A Dtrace.c20 u64 call_count; /* Total number of tracked function calls */
21 u64 untracked_count; /* Total number of untracked function calls */
162 int calls = hdr->call_accum[func]; in trace_list_functions() local
164 if (!calls) in trace_list_functions()
171 stats->call_count = calls; in trace_list_functions()
250 puts(" function calls\n"); in trace_print_stats()
252 puts(" untracked function calls\n"); in trace_print_stats()
255 puts(" traced function calls"); in trace_print_stats()
264 puts(" calls not traced due to depth\n"); in trace_print_stats()
340 /* We can ignore additional calls to this function */ in trace_early_init()
/openbmc/linux/Documentation/core-api/
H A Ddebug-objects.rst29 object type and add calls into the debug code at appropriate places. The
37 The debug calls provided by debugobjects are:
76 it calls the fixup_init function of the object type description
99 it calls the fixup_init function of the object type description
123 it calls the fixup_activate function of the object type description
131 objects. The fixup function checks whether the object is valid and calls
162 destroyed objects. When debugobjects detects an error, then it calls the
178 debugobjects detects an error, then it calls the fixup_free function of
193 When the real object is not tracked by debugobjects, it calls
252 case it is it calls debug_object_init() and debug_object_activate()
/openbmc/u-boot/test/trace/
H A Dtest-trace.sh39 if [ $(grep -c "traced function calls" ${tmp}) -ne 4 ]; then
44 # traced function calls between each 'trace stats' command, except
45 # between calls 2 and 3, where tracing is paused.
49 '/traced function calls/ { diff = $1 - upto; upto = $1; \
/openbmc/linux/net/rxrpc/
H A Dcall_accept.c56 /* We don't need more conns and peers than we have calls, but on the in rxrpc_service_prealloc_one()
58 * than calls. in rxrpc_service_prealloc_one()
95 /* Now it gets complicated, because calls get registered with the in rxrpc_service_prealloc_one()
111 pp = &rx->calls.rb_node; in rxrpc_service_prealloc_one()
133 rb_insert_color(&call->sock_node, &rx->calls); in rxrpc_service_prealloc_one()
142 list_add_tail_rcu(&call->link, &rxnet->calls); in rxrpc_service_prealloc_one()
158 * Allocate the preallocation buffers for incoming service calls. These must
188 /* Make sure that there aren't any incoming calls in progress before we in rxrpc_discard_prealloc()
256 /* #calls >= #conns >= #peers must hold true. */ in rxrpc_alloc_incoming_call()
323 * retainer ref obtained from the backlog buffer. Prealloc calls for userspace
[all …]
/openbmc/linux/Documentation/arch/arm/
H A Dkernel_mode_neon.rst11 * Put kernel_neon_begin() and kernel_neon_end() calls around the calls into your
60 If latency is a concern, it is possible to put back to back calls to
62 the NEON registers are live. (Additional calls to kernel_neon_begin() should be
83 between calls to these respective functions. Furthermore, GCC may generate NEON
93 * issue the calls to kernel_neon_begin(), kernel_neon_end() as well as the calls

12345678910>>...138