Home
last modified time | relevance | path

Searched refs:page (Results 501 - 525 of 6706) sorted by relevance

1...<<21222324252627282930>>...269

/kernel/linux/linux-5.10/arch/mips/include/asm/
H A Dbcache.h20 void (*bc_wback_inv)(unsigned long page, unsigned long size);
21 void (*bc_inv)(unsigned long page, unsigned long size);
43 static inline void bc_wback_inv(unsigned long page, unsigned long size) in bc_wback_inv() argument
45 bcops->bc_wback_inv(page, size); in bc_wback_inv()
48 static inline void bc_inv(unsigned long page, unsigned long size) in bc_inv() argument
50 bcops->bc_inv(page, size); in bc_inv()
79 #define bc_wback_inv(page, size) do { } while (0)
80 #define bc_inv(page, size) do { } while (0)
/kernel/linux/linux-5.10/arch/nios2/include/asm/
H A Dcacheflush.h16 * This flag is used to indicate that the page pointed to by a pte is clean
31 extern void flush_dcache_page(struct page *page);
34 extern void flush_icache_page(struct vm_area_struct *vma, struct page *page);
39 extern void copy_to_user_page(struct vm_area_struct *vma, struct page *page,
42 extern void copy_from_user_page(struct vm_area_struct *vma, struct page *page,
/kernel/linux/linux-5.10/arch/sh/include/asm/
H A Dtlbflush.h10 * - flush_tlb_page(vma, vmaddr) flushes one page
20 unsigned long page);
23 extern void local_flush_tlb_one(unsigned long asid, unsigned long page);
33 extern void flush_tlb_page(struct vm_area_struct *vma, unsigned long page);
35 extern void flush_tlb_one(unsigned long asid, unsigned long page);
41 #define flush_tlb_page(vma, page) local_flush_tlb_page(vma, page)
42 #define flush_tlb_one(asid, page) local_flush_tlb_one(asid, page)
/kernel/linux/linux-6.6/arch/mips/include/asm/
H A Dbcache.h20 void (*bc_wback_inv)(unsigned long page, unsigned long size);
21 void (*bc_inv)(unsigned long page, unsigned long size);
43 static inline void bc_wback_inv(unsigned long page, unsigned long size) in bc_wback_inv() argument
45 bcops->bc_wback_inv(page, size); in bc_wback_inv()
48 static inline void bc_inv(unsigned long page, unsigned long size) in bc_inv() argument
50 bcops->bc_inv(page, size); in bc_inv()
79 #define bc_wback_inv(page, size) do { } while (0)
80 #define bc_inv(page, size) do { } while (0)
/kernel/linux/linux-6.6/arch/sh/include/asm/
H A Dtlbflush.h10 * - flush_tlb_page(vma, vmaddr) flushes one page
20 unsigned long page);
23 extern void local_flush_tlb_one(unsigned long asid, unsigned long page);
33 extern void flush_tlb_page(struct vm_area_struct *vma, unsigned long page);
35 extern void flush_tlb_one(unsigned long asid, unsigned long page);
41 #define flush_tlb_page(vma, page) local_flush_tlb_page(vma, page)
42 #define flush_tlb_one(asid, page) local_flush_tlb_one(asid, page)
/kernel/linux/linux-5.10/fs/coda/
H A Dsymlink.c23 static int coda_symlink_filler(struct file *file, struct page *page) in coda_symlink_filler() argument
25 struct inode *inode = page->mapping->host; in coda_symlink_filler()
29 char *p = page_address(page); in coda_symlink_filler()
36 SetPageUptodate(page); in coda_symlink_filler()
37 unlock_page(page); in coda_symlink_filler()
41 SetPageError(page); in coda_symlink_filler()
42 unlock_page(page); in coda_symlink_filler()
/kernel/linux/linux-5.10/fs/ntfs/
H A Dusnjrnl.c38 struct page *page; in ntfs_stamp_usnjrnl() local
41 page = ntfs_map_page(vol->usnjrnl_max_ino->i_mapping, 0); in ntfs_stamp_usnjrnl()
42 if (IS_ERR(page)) { in ntfs_stamp_usnjrnl()
47 uh = (USN_HEADER*)page_address(page); in ntfs_stamp_usnjrnl()
60 flush_dcache_page(page); in ntfs_stamp_usnjrnl()
61 set_page_dirty(page); in ntfs_stamp_usnjrnl()
62 ntfs_unmap_page(page); in ntfs_stamp_usnjrnl()
/kernel/linux/linux-6.6/fs/ntfs/
H A Dusnjrnl.c38 struct page *page; in ntfs_stamp_usnjrnl() local
41 page = ntfs_map_page(vol->usnjrnl_max_ino->i_mapping, 0); in ntfs_stamp_usnjrnl()
42 if (IS_ERR(page)) { in ntfs_stamp_usnjrnl()
47 uh = (USN_HEADER*)page_address(page); in ntfs_stamp_usnjrnl()
60 flush_dcache_page(page); in ntfs_stamp_usnjrnl()
61 set_page_dirty(page); in ntfs_stamp_usnjrnl()
62 ntfs_unmap_page(page); in ntfs_stamp_usnjrnl()
/kernel/linux/linux-6.6/arch/xtensa/include/asm/
H A Dpgalloc.h26 #define pmd_populate(mm, pmdp, page) \
27 (pmd_val(*(pmdp)) = ((unsigned long)page_to_virt(page)))
56 struct page *page; in pte_alloc_one() local
58 page = __pte_alloc_one(mm, GFP_PGTABLE_USER); in pte_alloc_one()
59 if (!page) in pte_alloc_one()
61 ptes_clear(page_address(page)); in pte_alloc_one()
62 return page; in pte_alloc_one()
/kernel/linux/linux-5.10/samples/configfs/
H A Dconfigfs_sample.c45 static ssize_t childless_showme_show(struct config_item *item, char *page) in childless_showme_show() argument
50 pos = sprintf(page, "%d\n", childless->showme); in childless_showme_show()
56 static ssize_t childless_storeme_show(struct config_item *item, char *page) in childless_storeme_show() argument
58 return sprintf(page, "%d\n", to_childless(item)->storeme); in childless_storeme_show()
62 const char *page, size_t count) in childless_storeme_store()
67 ret = kstrtoint(page, 10, &childless->storeme); in childless_storeme_store()
74 static ssize_t childless_description_show(struct config_item *item, char *page) in childless_description_show() argument
76 return sprintf(page, in childless_description_show()
133 static ssize_t simple_child_storeme_show(struct config_item *item, char *page) in simple_child_storeme_show() argument
135 return sprintf(page, " in simple_child_storeme_show()
61 childless_storeme_store(struct config_item *item, const char *page, size_t count) childless_storeme_store() argument
138 simple_child_storeme_store(struct config_item *item, const char *page, size_t count) simple_child_storeme_store() argument
198 simple_children_description_show(struct config_item *item, char *page) simple_children_description_show() argument
276 group_children_description_show(struct config_item *item, char *page) group_children_description_show() argument
[all...]
/kernel/linux/linux-5.10/drivers/nvmem/
H A Drave-sp-eeprom.c43 * struct rave_sp_eeprom_page - RAVE SP EEPROM page
76 * rave_sp_eeprom_io - Low-level part of EEPROM page access
80 * @idx: number of the EEPROM page
81 * @page: Data to write or buffer to store result (via page->data)
93 struct rave_sp_eeprom_page *page) in rave_sp_eeprom_io()
96 const unsigned int data_size = is_write ? sizeof(page->data) : 0; in rave_sp_eeprom_io()
99 is_write ? sizeof(*page) - sizeof(page->data) : sizeof(*page); in rave_sp_eeprom_io()
90 rave_sp_eeprom_io(struct rave_sp_eeprom *eeprom, enum rave_sp_eeprom_access_type type, u16 idx, struct rave_sp_eeprom_page *page) rave_sp_eeprom_io() argument
163 struct rave_sp_eeprom_page page; rave_sp_eeprom_page_access() local
[all...]
/kernel/linux/linux-6.6/drivers/net/ethernet/sfc/
H A Dio.h165 /* Calculate offset to page-mapped register */
166 static inline unsigned int efx_paged_reg(struct efx_nic *efx, unsigned int page, in efx_paged_reg() argument
169 return page * efx->vi_stride + reg; in efx_paged_reg()
174 unsigned int reg, unsigned int page) in _efx_writeo_page()
176 reg = efx_paged_reg(efx, page, reg); in _efx_writeo_page()
192 #define efx_writeo_page(efx, value, reg, page) \
196 page)
198 /* Write a page-mapped 32-bit CSR (EVQ_RPTR, EVQ_TMR (EF10), or the
203 unsigned int reg, unsigned int page) in _efx_writed_page()
205 efx_writed(efx, value, efx_paged_reg(efx, page, re in _efx_writed_page()
173 _efx_writeo_page(struct efx_nic *efx, efx_oword_t *value, unsigned int reg, unsigned int page) _efx_writeo_page() argument
202 _efx_writed_page(struct efx_nic *efx, const efx_dword_t *value, unsigned int reg, unsigned int page) _efx_writed_page() argument
224 _efx_writed_page_locked(struct efx_nic *efx, const efx_dword_t *value, unsigned int reg, unsigned int page) _efx_writed_page_locked() argument
[all...]
/kernel/linux/linux-6.6/fs/erofs/
H A Dutils.c8 struct page *erofs_allocpage(struct page **pagepool, gfp_t gfp) in erofs_allocpage()
10 struct page *page = *pagepool; in erofs_allocpage() local
12 if (page) { in erofs_allocpage()
13 DBG_BUGON(page_ref_count(page) != 1); in erofs_allocpage()
14 *pagepool = (struct page *)page_private(page); in erofs_allocpage()
16 page = alloc_page(gfp); in erofs_allocpage()
18 return page; in erofs_allocpage()
24 struct page *page = *pagepool; erofs_release_pages() local
[all...]
/kernel/linux/linux-6.6/drivers/nvmem/
H A Drave-sp-eeprom.c43 * struct rave_sp_eeprom_page - RAVE SP EEPROM page
76 * rave_sp_eeprom_io - Low-level part of EEPROM page access
80 * @idx: number of the EEPROM page
81 * @page: Data to write or buffer to store result (via page->data)
93 struct rave_sp_eeprom_page *page) in rave_sp_eeprom_io()
96 const unsigned int data_size = is_write ? sizeof(page->data) : 0; in rave_sp_eeprom_io()
99 is_write ? sizeof(*page) - sizeof(page->data) : sizeof(*page); in rave_sp_eeprom_io()
90 rave_sp_eeprom_io(struct rave_sp_eeprom *eeprom, enum rave_sp_eeprom_access_type type, u16 idx, struct rave_sp_eeprom_page *page) rave_sp_eeprom_io() argument
163 struct rave_sp_eeprom_page page; rave_sp_eeprom_page_access() local
[all...]
/kernel/linux/linux-6.6/mm/
H A Dpage_table_check.c58 * An entry is removed from the page table, decrement the counters for that page
64 struct page *page; in page_table_check_clear() local
71 page = pfn_to_page(pfn); in page_table_check_clear()
72 page_ext = page_ext_get(page); in page_table_check_clear()
74 BUG_ON(PageSlab(page)); in page_table_check_clear()
75 anon = PageAnon(page); in page_table_check_clear()
93 * A new entry is added to the page table, increment the counters for that page
101 struct page *page; page_table_check_set() local
133 __page_table_check_zero(struct page *page, unsigned int order) __page_table_check_zero() argument
[all...]
H A Dmemremap.c113 struct page *first_page; in pageunmap_range()
227 * allocate and initialize struct page for the device memory. More- in pagemap_range()
440 * @pfn: page frame number to lookup page_map
471 void free_zone_device_page(struct page *page) in free_zone_device_page() argument
473 if (WARN_ON_ONCE(!page->pgmap->ops || !page->pgmap->ops->page_free)) in free_zone_device_page()
476 mem_cgroup_uncharge(page_folio(page)); in free_zone_device_page()
483 VM_BUG_ON_PAGE(PageAnon(page) && PageCompound(page), pag in free_zone_device_page()
522 zone_device_page_init(struct page *page) zone_device_page_init() argument
535 __put_devmap_managed_page_refs(struct page *page, int refs) __put_devmap_managed_page_refs() argument
[all...]
/kernel/linux/linux-6.6/samples/configfs/
H A Dconfigfs_sample.c43 static ssize_t childless_showme_show(struct config_item *item, char *page) in childless_showme_show() argument
48 pos = sprintf(page, "%d\n", childless->showme); in childless_showme_show()
54 static ssize_t childless_storeme_show(struct config_item *item, char *page) in childless_storeme_show() argument
56 return sprintf(page, "%d\n", to_childless(item)->storeme); in childless_storeme_show()
60 const char *page, size_t count) in childless_storeme_store()
65 ret = kstrtoint(page, 10, &childless->storeme); in childless_storeme_store()
72 static ssize_t childless_description_show(struct config_item *item, char *page) in childless_description_show() argument
74 return sprintf(page, in childless_description_show()
131 static ssize_t simple_child_storeme_show(struct config_item *item, char *page) in simple_child_storeme_show() argument
133 return sprintf(page, " in simple_child_storeme_show()
59 childless_storeme_store(struct config_item *item, const char *page, size_t count) childless_storeme_store() argument
136 simple_child_storeme_store(struct config_item *item, const char *page, size_t count) simple_child_storeme_store() argument
196 simple_children_description_show(struct config_item *item, char *page) simple_children_description_show() argument
274 group_children_description_show(struct config_item *item, char *page) group_children_description_show() argument
[all...]
/third_party/mesa3d/src/util/
H A Dslab.c49 * - a pointer to the orphaned page of the element, with the least
59 /* The page is an array of allocations in one block. */
62 /* Next page in the same child pool. */
68 /* Memory after the last member is dedicated to the page itself.
76 struct slab_page_header *page, unsigned index) in slab_get_element()
79 ((uint8_t*)&page[1] + (parent->element_size * index)); in slab_get_element()
82 /* The given object/element belongs to an orphaned page (i.e. the owning child
83 * pool has been destroyed). Mark the element as freed and free the whole page
89 struct slab_page_header *page; in slab_free_orphaned() local
93 page in slab_free_orphaned()
75 slab_get_element(struct slab_parent_pool *parent, struct slab_page_header *page, unsigned index) slab_get_element() argument
148 struct slab_page_header *page = pool->pages; slab_destroy_child() local
179 struct slab_page_header *page = malloc(sizeof(struct slab_page_header) + slab_add_new_page() local
[all...]
/kernel/linux/linux-5.10/fs/ocfs2/cluster/
H A Dnodemanager.c164 static ssize_t o2nm_node_num_show(struct config_item *item, char *page) in o2nm_node_num_show() argument
166 return sprintf(page, "%d\n", to_o2nm_node(item)->nd_num); in o2nm_node_num_show()
185 static ssize_t o2nm_node_num_store(struct config_item *item, const char *page, in o2nm_node_num_store() argument
191 char *p = (char *)page; in o2nm_node_num_store()
235 static ssize_t o2nm_node_ipv4_port_show(struct config_item *item, char *page) in o2nm_node_ipv4_port_show() argument
237 return sprintf(page, "%u\n", ntohs(to_o2nm_node(item)->nd_ipv4_port)); in o2nm_node_ipv4_port_show()
241 const char *page, size_t count) in o2nm_node_ipv4_port_store()
245 char *p = (char *)page; in o2nm_node_ipv4_port_store()
263 static ssize_t o2nm_node_ipv4_address_show(struct config_item *item, char *page) in o2nm_node_ipv4_address_show() argument
265 return sprintf(page, " in o2nm_node_ipv4_address_show()
240 o2nm_node_ipv4_port_store(struct config_item *item, const char *page, size_t count) o2nm_node_ipv4_port_store() argument
268 o2nm_node_ipv4_address_store(struct config_item *item, const char *page, size_t count) o2nm_node_ipv4_address_store() argument
319 o2nm_node_local_show(struct config_item *item, char *page) o2nm_node_local_show() argument
324 o2nm_node_local_store(struct config_item *item, const char *page, size_t count) o2nm_node_local_store() argument
426 o2nm_cluster_attr_write(const char *page, ssize_t count, unsigned int *val) o2nm_cluster_attr_write() argument
446 o2nm_cluster_idle_timeout_ms_show(struct config_item *item, char *page) o2nm_cluster_idle_timeout_ms_show() argument
452 o2nm_cluster_idle_timeout_ms_store(struct config_item *item, const char *page, size_t count) o2nm_cluster_idle_timeout_ms_store() argument
482 o2nm_cluster_keepalive_delay_ms_show( struct config_item *item, char *page) o2nm_cluster_keepalive_delay_ms_show() argument
489 o2nm_cluster_keepalive_delay_ms_store( struct config_item *item, const char *page, size_t count) o2nm_cluster_keepalive_delay_ms_store() argument
519 o2nm_cluster_reconnect_delay_ms_show( struct config_item *item, char *page) o2nm_cluster_reconnect_delay_ms_show() argument
526 o2nm_cluster_reconnect_delay_ms_store( struct config_item *item, const char *page, size_t count) o2nm_cluster_reconnect_delay_ms_store() argument
533 o2nm_cluster_fence_method_show( struct config_item *item, char *page) o2nm_cluster_fence_method_show() argument
545 o2nm_cluster_fence_method_store( struct config_item *item, const char *page, size_t count) o2nm_cluster_fence_method_store() argument
[all...]
/kernel/linux/linux-6.6/fs/ocfs2/cluster/
H A Dnodemanager.c162 static ssize_t o2nm_node_num_show(struct config_item *item, char *page) in o2nm_node_num_show() argument
164 return sprintf(page, "%d\n", to_o2nm_node(item)->nd_num); in o2nm_node_num_show()
183 static ssize_t o2nm_node_num_store(struct config_item *item, const char *page, in o2nm_node_num_store() argument
189 char *p = (char *)page; in o2nm_node_num_store()
233 static ssize_t o2nm_node_ipv4_port_show(struct config_item *item, char *page) in o2nm_node_ipv4_port_show() argument
235 return sprintf(page, "%u\n", ntohs(to_o2nm_node(item)->nd_ipv4_port)); in o2nm_node_ipv4_port_show()
239 const char *page, size_t count) in o2nm_node_ipv4_port_store()
243 char *p = (char *)page; in o2nm_node_ipv4_port_store()
261 static ssize_t o2nm_node_ipv4_address_show(struct config_item *item, char *page) in o2nm_node_ipv4_address_show() argument
263 return sprintf(page, " in o2nm_node_ipv4_address_show()
238 o2nm_node_ipv4_port_store(struct config_item *item, const char *page, size_t count) o2nm_node_ipv4_port_store() argument
266 o2nm_node_ipv4_address_store(struct config_item *item, const char *page, size_t count) o2nm_node_ipv4_address_store() argument
317 o2nm_node_local_show(struct config_item *item, char *page) o2nm_node_local_show() argument
322 o2nm_node_local_store(struct config_item *item, const char *page, size_t count) o2nm_node_local_store() argument
424 o2nm_cluster_attr_write(const char *page, ssize_t count, unsigned int *val) o2nm_cluster_attr_write() argument
444 o2nm_cluster_idle_timeout_ms_show(struct config_item *item, char *page) o2nm_cluster_idle_timeout_ms_show() argument
450 o2nm_cluster_idle_timeout_ms_store(struct config_item *item, const char *page, size_t count) o2nm_cluster_idle_timeout_ms_store() argument
480 o2nm_cluster_keepalive_delay_ms_show( struct config_item *item, char *page) o2nm_cluster_keepalive_delay_ms_show() argument
487 o2nm_cluster_keepalive_delay_ms_store( struct config_item *item, const char *page, size_t count) o2nm_cluster_keepalive_delay_ms_store() argument
517 o2nm_cluster_reconnect_delay_ms_show( struct config_item *item, char *page) o2nm_cluster_reconnect_delay_ms_show() argument
524 o2nm_cluster_reconnect_delay_ms_store( struct config_item *item, const char *page, size_t count) o2nm_cluster_reconnect_delay_ms_store() argument
531 o2nm_cluster_fence_method_show( struct config_item *item, char *page) o2nm_cluster_fence_method_show() argument
543 o2nm_cluster_fence_method_store( struct config_item *item, const char *page, size_t count) o2nm_cluster_fence_method_store() argument
[all...]
/kernel/linux/linux-6.6/fs/f2fs/
H A Dcompress.c29 unsigned int size = sizeof(struct page *) * nr; in page_array_alloc()
40 unsigned int size = sizeof(struct page *) * nr; in page_array_free()
76 bool f2fs_is_compressed_page(struct page *page) in f2fs_is_compressed_page() argument
78 if (!PagePrivate(page)) in f2fs_is_compressed_page()
80 if (!page_private(page)) in f2fs_is_compressed_page()
82 if (page_private_nonpointer(page)) in f2fs_is_compressed_page()
85 f2fs_bug_on(F2FS_M_SB(page->mapping), in f2fs_is_compressed_page()
86 *((u32 *)page_private(page)) != F2FS_COMPRESSED_PAGE_MAGIC); in f2fs_is_compressed_page()
90 static void f2fs_set_compressed_page(struct page *pag argument
138 f2fs_compress_control_page(struct page *page) f2fs_compress_control_page() argument
163 f2fs_compress_ctx_add_page(struct compress_ctx *cc, struct page *page) f2fs_compress_ctx_add_page() argument
590 struct page *page; f2fs_compress_alloc_page() local
598 f2fs_compress_free_page(struct page *page) f2fs_compress_free_page() argument
807 f2fs_end_read_compressed_page(struct page *page, bool failed, block_t blkaddr, bool in_task) f2fs_end_read_compressed_page() argument
883 struct page *page = cc->rpages[i]; cluster_has_invalid_data() local
1043 struct page *page; prepare_compress_overwrite() local
1409 f2fs_compress_write_end_io(struct bio *bio, struct page *page) f2fs_compress_write_end_io() argument
1660 struct page *page; f2fs_alloc_dic() local
1801 f2fs_put_page_dic(struct page *page, bool in_task) f2fs_put_page_dic() argument
1853 f2fs_cache_compressed_page(struct f2fs_sb_info *sbi, struct page *page, nid_t ino, block_t blkaddr) f2fs_cache_compressed_page() argument
1896 f2fs_load_compressed_page(struct f2fs_sb_info *sbi, struct page *page, block_t blkaddr) f2fs_load_compressed_page() argument
[all...]
/kernel/linux/linux-5.10/drivers/net/ethernet/cavium/liquidio/
H A Docteon_network.h263 struct page *page; in recv_buffer_alloc() local
267 page = alloc_page(GFP_ATOMIC); in recv_buffer_alloc()
268 if (unlikely(!page)) in recv_buffer_alloc()
273 __free_page(page); in recv_buffer_alloc()
274 pg_info->page = NULL; in recv_buffer_alloc()
286 pg_info->dma = dma_map_page(&oct->pci_dev->dev, page, 0, in recv_buffer_alloc()
291 __free_page(page); in recv_buffer_alloc()
293 pg_info->page = NULL; in recv_buffer_alloc()
297 pg_info->page in recv_buffer_alloc()
[all...]
/kernel/linux/linux-6.6/drivers/net/ethernet/cavium/liquidio/
H A Docteon_network.h263 struct page *page; in recv_buffer_alloc() local
267 page = alloc_page(GFP_ATOMIC); in recv_buffer_alloc()
268 if (unlikely(!page)) in recv_buffer_alloc()
273 __free_page(page); in recv_buffer_alloc()
274 pg_info->page = NULL; in recv_buffer_alloc()
286 pg_info->dma = dma_map_page(&oct->pci_dev->dev, page, 0, in recv_buffer_alloc()
291 __free_page(page); in recv_buffer_alloc()
293 pg_info->page = NULL; in recv_buffer_alloc()
297 pg_info->page in recv_buffer_alloc()
[all...]
/kernel/linux/linux-6.6/drivers/net/vmxnet3/
H A Dvmxnet3_xdp.c123 struct page *page; in vmxnet3_xdp_xmit_frame() local
148 } else { /* XDP buffer from page pool */ in vmxnet3_xdp_xmit_frame()
149 page = virt_to_page(xdpf->data); in vmxnet3_xdp_xmit_frame()
150 tbi->dma_addr = page_pool_get_dma_addr(page) + in vmxnet3_xdp_xmit_frame()
255 struct page *page; in vmxnet3_run_xdp() local
261 page = virt_to_page(xdp->data_hard_start); in vmxnet3_run_xdp()
272 page_pool_recycle_direct(rq->page_pool, page); in vmxnet3_run_xdp()
280 page_pool_recycle_direct(rq->page_pool, page); in vmxnet3_run_xdp()
303 vmxnet3_build_skb(struct vmxnet3_rx_queue *rq, struct page *page, const struct xdp_buff *xdp) vmxnet3_build_skb() argument
332 struct page *page; vmxnet3_process_xdp_small() local
378 struct page *page; vmxnet3_process_xdp() local
[all...]
/kernel/linux/linux-6.6/lib/
H A Dfault-inject.c252 static ssize_t fault_uint_attr_show(unsigned int val, char *page) in fault_uint_attr_show() argument
254 return snprintf(page, PAGE_SIZE, "%u\n", val); in fault_uint_attr_show()
257 static ssize_t fault_ulong_attr_show(unsigned long val, char *page) in fault_ulong_attr_show() argument
259 return snprintf(page, PAGE_SIZE, "%lu\n", val); in fault_ulong_attr_show()
262 static ssize_t fault_bool_attr_show(bool val, char *page) in fault_bool_attr_show() argument
264 return snprintf(page, PAGE_SIZE, "%u\n", val); in fault_bool_attr_show()
267 static ssize_t fault_atomic_t_attr_show(atomic_t val, char *page) in fault_atomic_t_attr_show() argument
269 return snprintf(page, PAGE_SIZE, "%d\n", atomic_read(&val)); in fault_atomic_t_attr_show()
272 static ssize_t fault_uint_attr_store(unsigned int *val, const char *page, size_t count) in fault_uint_attr_store() argument
277 result = kstrtouint(page, in fault_uint_attr_store()
285 fault_ulong_attr_store(unsigned long *val, const char *page, size_t count) fault_ulong_attr_store() argument
298 fault_bool_attr_store(bool *val, const char *page, size_t count) fault_bool_attr_store() argument
311 fault_atomic_t_attr_store(atomic_t *val, const char *page, size_t count) fault_atomic_t_attr_store() argument
366 fault_stacktrace_depth_show(struct config_item *item, char *page) fault_stacktrace_depth_show() argument
371 fault_stacktrace_depth_store(struct config_item *item, const char *page, size_t count) fault_stacktrace_depth_store() argument
389 fault_xul_attr_show(unsigned long val, char *page) fault_xul_attr_show() argument
395 fault_xul_attr_store(unsigned long *val, const char *page, size_t count) fault_xul_attr_store() argument
[all...]

Completed in 13 milliseconds

1...<<21222324252627282930>>...269