Home
last modified time | relevance | path

Searched full:place (Results 1 – 25 of 5098) sorted by relevance

12345678910>>...204

/kernel/linux/linux-4.19/arch/arm64/kernel/
Dmodule.c82 static u64 do_reloc(enum aarch64_reloc_op reloc_op, __le32 *place, u64 val) in do_reloc() argument
88 return val - (u64)place; in do_reloc()
90 return (val & ~0xfff) - ((u64)place & ~0xfff); in do_reloc()
99 static int reloc_data(enum aarch64_reloc_op op, void *place, u64 val, int len) in reloc_data() argument
101 s64 sval = do_reloc(op, place, val); in reloc_data()
105 *(s16 *)place = sval; in reloc_data()
110 *(s32 *)place = sval; in reloc_data()
115 *(s64 *)place = sval; in reloc_data()
129 static int reloc_insn_movw(enum aarch64_reloc_op op, __le32 *place, u64 val, in reloc_insn_movw() argument
134 u32 insn = le32_to_cpu(*place); in reloc_insn_movw()
[all …]
/kernel/linux/linux-5.10/arch/arm64/kernel/
Dmodule.c72 static u64 do_reloc(enum aarch64_reloc_op reloc_op, __le32 *place, u64 val) in do_reloc() argument
78 return val - (u64)place; in do_reloc()
80 return (val & ~0xfff) - ((u64)place & ~0xfff); in do_reloc()
89 static int reloc_data(enum aarch64_reloc_op op, void *place, u64 val, int len) in reloc_data() argument
91 s64 sval = do_reloc(op, place, val); in reloc_data()
94 * The ELF psABI for AArch64 documents the 16-bit and 32-bit place in reloc_data()
107 *(s16 *)place = sval; in reloc_data()
123 *(s32 *)place = sval; in reloc_data()
139 *(s64 *)place = sval; in reloc_data()
153 static int reloc_insn_movw(enum aarch64_reloc_op op, __le32 *place, u64 val, in reloc_insn_movw() argument
[all …]
/kernel/linux/linux-5.10/tools/testing/selftests/ftrace/test.d/dynevent/
Dgeneric_clear_event.tc4 # requires: dynamic_events "place: [<module>:]<symbol>":README "place (kretprobe): [<module>:]<symb…
9 PLACE=$FUNCTION_FORK
12 echo "p:myevent1 $PLACE" >> dynamic_events
14 echo "r:myevent2 $PLACE" >> dynamic_events
25 echo "!p:myevent1 $PLACE" >> dynamic_events
36 echo "!r:myevent2 $PLACE" >> dynamic_events
Dadd_remove_kprobe.tc4 # requires: dynamic_events "place: [<module>:]<symbol>":README "place (kretprobe): [<module>:]<symb…
9 PLACE=$FUNCTION_FORK
11 echo "p:myevent1 $PLACE" >> dynamic_events
12 echo "r:myevent2 $PLACE" >> dynamic_events
Dclear_select_events.tc4 …equires: dynamic_events kprobe_events synthetic_events "place: [<module>:]<symbol>":README "place
9 PLACE=$FUNCTION_FORK
12 echo "p:myevent1 $PLACE" >> dynamic_events
14 echo "r:myevent2 $PLACE" >> dynamic_events
/kernel/linux/linux-4.19/drivers/gpu/drm/amd/amdgpu/
Damdgpu_gtt_mgr.c105 * @place: placement flags and restrictions
112 const struct ttm_place *place, in amdgpu_gtt_mgr_alloc() argument
125 if (place) in amdgpu_gtt_mgr_alloc()
126 fpfn = place->fpfn; in amdgpu_gtt_mgr_alloc()
130 if (place && place->lpfn) in amdgpu_gtt_mgr_alloc()
131 lpfn = place->lpfn; in amdgpu_gtt_mgr_alloc()
136 if (place && place->flags & TTM_PL_FLAG_TOPDOWN) in amdgpu_gtt_mgr_alloc()
156 * @place: placement flags and restrictions
163 const struct ttm_place *place, in amdgpu_gtt_mgr_new() argument
190 if (place->fpfn || place->lpfn || place->flags & TTM_PL_FLAG_TOPDOWN) { in amdgpu_gtt_mgr_new()
[all …]
Damdgpu_vram_mgr.c132 * @place: placement flags and restrictions
139 const struct ttm_place *place, in amdgpu_vram_mgr_new() argument
152 lpfn = place->lpfn; in amdgpu_vram_mgr_new()
156 if (place->flags & TTM_PL_FLAG_CONTIGUOUS || in amdgpu_vram_mgr_new()
172 if (place->flags & TTM_PL_FLAG_TOPDOWN) in amdgpu_vram_mgr_new()
189 place->fpfn, lpfn, in amdgpu_vram_mgr_new()
231 * @place: placement flags and restrictions
/kernel/linux/linux-5.10/drivers/gpu/drm/vmwgfx/
Dvmwgfx_thp.c33 const struct ttm_place *place, in vmw_thp_insert_aligned() argument
43 place->fpfn, lpfn, mode); in vmw_thp_insert_aligned()
51 const struct ttm_place *place, in vmw_thp_get_node() argument
66 lpfn = place->lpfn; in vmw_thp_get_node()
71 if (place->flags & TTM_PL_FLAG_TOPDOWN) in vmw_thp_get_node()
79 place, mem, lpfn, mode); in vmw_thp_get_node()
87 ret = vmw_thp_insert_aligned(mm, node, align_pages, place, mem, in vmw_thp_get_node()
95 place->fpfn, lpfn, mode); in vmw_thp_get_node()
/kernel/linux/linux-4.19/drivers/staging/erofs/
DKconfig110 "In-place Decompression Only" consumes the minimum memory
119 bool "In-place Decompression Only"
121 Read compressed data into page cache and do in-place
129 It still decompresses in place for the rest compressed pages.
136 It still decompresses in place for the rest compressed pages.
/kernel/linux/linux-4.19/Documentation/hwmon/
Dk8temp30 temp1_input - temperature of Core 0 and "place" 0
31 temp2_input - temperature of Core 0 and "place" 1
32 temp3_input - temperature of Core 1 and "place" 0
33 temp4_input - temperature of Core 1 and "place" 1
/kernel/linux/linux-5.10/Documentation/hwmon/
Dk8temp.rst36 temp1_input temperature of Core 0 and "place" 0
37 temp2_input temperature of Core 0 and "place" 1
38 temp3_input temperature of Core 1 and "place" 0
39 temp4_input temperature of Core 1 and "place" 1
/kernel/linux/linux-4.19/Documentation/RCU/
DlistRCU.txt11 Example 1: Read-Side Action Taken Outside of Lock, No In-Place Updates
23 added or deleted, rather than being modified in place.
155 or deleted, without in-place modification, it is very easy to use RCU!
158 Example 2: Handling In-Place Updates
160 The system-call auditing code does not update auditing rules in place.
266 update-in-place performed by audit_upd_rule(). For one thing,
299 in place), but non-atomic in-place modifications can be handled by making
/kernel/linux/linux-4.19/include/uapi/linux/
Dcoda.h374 char *data; /* Place holder for data. */
380 caddr_t data; /* Place holder for data. */
427 int name; /* Place holder for data. */
445 int name; /* Place holder for data. */
459 int name; /* Place holder for data. */
470 struct CodaFid destFid; /* Directory in which to place link */
471 int tname; /* Place holder for data. */
497 int name; /* Place holder for data. */
511 int name; /* Place holder for data. */
540 caddr_t data; /* Place holder for data. */
/kernel/linux/linux-4.19/arch/sparc/kernel/
Divec.S5 * [high 32-bits] MMU Context Argument 0, place in %g5
6 * DATA 1: Address Argument 1, place in %g1
7 * DATA 2: Address Argument 2, place in %g7
/kernel/linux/linux-5.10/arch/sparc/kernel/
Divec.S5 * [high 32-bits] MMU Context Argument 0, place in %g5
6 * DATA 1: Address Argument 1, place in %g1
7 * DATA 2: Address Argument 2, place in %g7
/kernel/linux/linux-4.19/drivers/gpu/drm/ttm/
Dttm_bo.c59 static inline int ttm_mem_type_from_place(const struct ttm_place *place, in ttm_mem_type_from_place() argument
64 pos = ffs(place->flags & TTM_PL_MASK_MEM); in ttm_mem_type_from_place()
330 * This is the place to put in driver specific hooks to release
669 const struct ttm_place *place) in ttm_bo_eviction_valuable() argument
674 if (place->fpfn >= (bo->mem.start + bo->mem.num_pages) || in ttm_bo_eviction_valuable()
675 (place->lpfn && place->lpfn <= bo->mem.start)) in ttm_bo_eviction_valuable()
713 const struct ttm_place *place, in ttm_mem_evict_first() argument
729 if (place && !bdev->driver->eviction_valuable(bo, in ttm_mem_evict_first()
730 place)) { in ttm_mem_evict_first()
818 const struct ttm_place *place, in ttm_bo_mem_force_space() argument
[all …]
Dttm_bo_manager.c53 const struct ttm_place *place, in ttm_bo_man_get_node() argument
63 lpfn = place->lpfn; in ttm_bo_man_get_node()
72 if (place->flags & TTM_PL_FLAG_TOPDOWN) in ttm_bo_man_get_node()
79 place->fpfn, lpfn, mode); in ttm_bo_man_get_node()
/kernel/linux/linux-5.10/drivers/staging/fwserial/
Ddma_fifo.c36 * @fifo: address of in-place "struct dma_fifo" object
46 * @fifo: address of in-place "struct dma_fifo" object
90 * @fifo: address of in-place "struct dma_fifo" to free
111 * @fifo: address of in-place "struct dma_fifo" to reset
132 * @fifo: address of in-place "struct dma_fifo" to write to
175 * @fifo: address of in-place "struct dma_fifo" to read from
239 * @fifo: address of in-place "struct dma_fifo" which was read from
/kernel/linux/linux-4.19/drivers/staging/fwserial/
Ddma_fifo.c36 * @fifo: address of in-place "struct dma_fifo" object
46 * @fifo: address of in-place "struct dma_fifo" object
90 * @fifo: address of in-place "struct dma_fifo" to free
111 * @fifo: address of in-place "struct dma_fifo" to reset
132 * @fifo: address of in-place "struct dma_fifo" to write to
175 * @fifo: address of in-place "struct dma_fifo" to read from
239 * @fifo: address of in-place "struct dma_fifo" which was read from
/kernel/linux/linux-5.10/include/uapi/linux/
Dcoda.h374 char *data; /* Place holder for data. */
380 caddr_t data; /* Place holder for data. */
427 int name; /* Place holder for data. */
445 int name; /* Place holder for data. */
459 int name; /* Place holder for data. */
470 struct CodaFid destFid; /* Directory in which to place link */
471 int tname; /* Place holder for data. */
497 int name; /* Place holder for data. */
511 int name; /* Place holder for data. */
540 caddr_t data; /* Place holder for data. */
/kernel/linux/linux-5.10/drivers/gpu/drm/ttm/
Dttm_bo.c315 * This is the place to put in driver specific hooks to release
645 const struct ttm_place *place) in ttm_bo_eviction_valuable() argument
650 if (place->fpfn >= (bo->mem.start + bo->mem.num_pages) || in ttm_bo_eviction_valuable()
651 (place->lpfn && place->lpfn <= bo->mem.start)) in ttm_bo_eviction_valuable()
727 const struct ttm_place *place, in ttm_mem_evict_first() argument
749 if (place && !bdev->driver->eviction_valuable(bo, in ttm_mem_evict_first()
750 place)) { in ttm_mem_evict_first()
838 const struct ttm_place *place, in ttm_bo_mem_force_space() argument
849 ret = ttm_resource_alloc(bo, place, mem); in ttm_bo_mem_force_space()
854 ret = ttm_mem_evict_first(bdev, man, place, ctx, in ttm_bo_mem_force_space()
[all …]
/kernel/linux/linux-5.10/Documentation/filesystems/
Dcoda.rst172 be able to retrieve and place messages and to be notified of the
196 Among these interfaces the VFS interface and the facility to place,
511 char *name; /* Place holder for data. */
673 char *name; /* Place holder for data. */
734 char *name; /* Place holder for data. */
779 ViceFid destFid; /* Directory in which to place link */
780 char *tname; /* Place holder for data. */
847 char *name; /* Place holder for data. */
879 char *name; /* Place holder for data. */
916 caddr_t data; /* Place holder for data. */
[all …]
/kernel/linux/linux-5.10/arch/mips/include/asm/mach-ip27/
Dkernel-entry-init.h37 dsll t1, NASID_SHFT # Shift text nasid into place
43 dsll t1, 6 # Get pfn into place
44 dsll t2, 6 # Get pfn into place
/kernel/linux/linux-4.19/arch/mips/include/asm/mach-ip27/
Dkernel-entry-init.h47 dsll t1, NASID_SHFT # Shift text nasid into place
53 dsll t1, 6 # Get pfn into place
54 dsll t2, 6 # Get pfn into place
/kernel/linux/linux-4.19/Documentation/filesystems/
Dcoda.txt228 be able to retrieve and place messages and to be notified of the
257 Among these interfaces the VFS interface and the facility to place,
590 char *name; /* Place holder for data. */
744 char *name; /* Place holder for data. */
801 char *name; /* Place holder for data. */
842 ViceFid destFid; /* Directory in which to place link */
843 char *tname; /* Place holder for data. */
903 char *name; /* Place holder for data. */
932 char *name; /* Place holder for data. */
969 caddr_t data; /* Place holder for data. */
[all …]

12345678910>>...204