Searched refs:mapping (Results 426 - 450 of 1981) sorted by relevance

<<11121314151617181920>>

/linux-master/drivers/media/platform/ti/omap3isp/
H A Disp.c46 #include <linux/dma-mapping.h>
1953 arm_iommu_release_mapping(isp->mapping);
1954 isp->mapping = NULL;
1961 struct dma_iommu_mapping *mapping; local
1965 * Create the ARM mapping, used by the ARM DMA mapping core to allocate
1968 mapping = arm_iommu_create_mapping(&platform_bus_type, SZ_1G, SZ_2G);
1969 if (IS_ERR(mapping)) {
1970 dev_err(isp->dev, "failed to create ARM IOMMU mapping\n");
1971 return PTR_ERR(mapping);
[all...]
/linux-master/tools/testing/selftests/bpf/
H A Dtest_bpftool_synctypes.py193 dict mapping from name to textual representation.
199 mapping = {}
204 mapping[name] = text
206 return mapping
/linux-master/fs/btrfs/
H A Dzlib.c94 int zlib_compress_folios(struct list_head *ws, struct address_space *mapping, argument
156 ret = btrfs_compress_filemap_get_folio(mapping,
172 ret = btrfs_compress_filemap_get_folio(mapping,
H A Dlzo.c212 int lzo_compress_folios(struct list_head *ws, struct address_space *mapping, argument
217 const u32 sectorsize = inode_to_fs_info(mapping->host)->sectorsize;
247 ret = btrfs_compress_filemap_get_folio(mapping, cur_in, &folio_in);
/linux-master/fs/
H A Dfs-writeback.c400 struct address_space *mapping = inode->i_mapping; local
401 XA_STATE(xas, &mapping->i_pages, 0);
406 xa_lock_irq(&mapping->i_pages);
438 if (mapping_tagged(mapping, PAGECACHE_TAG_WRITEBACK)) {
484 xa_unlock_irq(&mapping->i_pages);
1642 struct address_space *mapping = inode->i_mapping; local
1651 ret = do_writepages(mapping, wbc);
1661 int err = filemap_fdatawait(mapping);
1695 * I_DIRTY_PAGES is always cleared together above even if @mapping
1702 if (mapping_tagged(mapping, PAGECACHE_TAG_DIRT
2637 struct address_space *mapping = inode->i_mapping; local
[all...]
/linux-master/fs/netfs/
H A Dinternal.h72 struct address_space *mapping,
79 struct netfs_io_request *netfs_alloc_request(struct address_space *mapping,
157 struct netfs_io_request *netfs_create_write_req(struct address_space *mapping,
/linux-master/fs/erofs/
H A Dzdata.c125 return fo->mapping == MNGD_MAPPING(sbi);
939 buf.mapping = packed_inode->i_mapping;
1069 return !page->mapping && !z_erofs_is_shortlived_page(page);
1421 struct address_space *mapping; local
1448 mapping = READ_ONCE(zbv.folio->mapping);
1451 * therefore it is impossible for `mapping` to be NULL.
1453 if (mapping && mapping != mc) {
1461 if (zbv.folio->mapping
[all...]
/linux-master/include/linux/
H A Dnetfs.h228 struct address_space *mapping; /* The mapping being accessed */ member in struct:netfs_io_request
415 int netfs_writepages(struct address_space *mapping,
417 bool netfs_dirty_folio(struct address_space *mapping, struct folio *folio);
/linux-master/fs/f2fs/
H A Dfile.c110 if (unlikely(page->mapping != inode->i_mapping ||
397 static bool __found_offset(struct address_space *mapping, argument
401 struct inode *inode = mapping->host;
416 xa_get_mark(&mapping->i_pages, index, PAGECACHE_TAG_DIRTY))
650 struct address_space *mapping = inode->i_mapping; local
657 page = find_lock_page(mapping, index);
1521 struct address_space *mapping = inode->i_mapping; local
1535 ret = filemap_write_and_wait_range(mapping, offset, offset + len - 1);
1569 filemap_invalidate_lock(mapping);
1581 filemap_invalidate_unlock(mapping);
1628 struct address_space *mapping = inode->i_mapping; local
3870 struct address_space *mapping = inode->i_mapping; local
4123 struct address_space *mapping = inode->i_mapping; local
4727 f2fs_flush_buffered_write(struct address_space *mapping, loff_t start_pos, loff_t end_pos) argument
4951 struct address_space *mapping; local
[all...]
/linux-master/drivers/net/ethernet/sun/
H A Dsunhme.c20 #include <linux/dma-mapping.h>
1224 u32 mapping; local
1235 mapping = dma_map_single(hp->dma_dev, skb->data, RX_BUF_ALLOC_SIZE,
1237 if (dma_mapping_error(hp->dma_dev, mapping)) {
1244 mapping);
1796 u32 mapping; local
1805 mapping = dma_map_single(hp->dma_dev, new_skb->data,
1808 if (unlikely(dma_mapping_error(hp->dma_dev, mapping))) {
1818 mapping);
2002 u32 mapping, le local
2029 u32 len, mapping, this_txflags; local
[all...]
/linux-master/fs/afs/
H A Ddir.c48 static bool afs_dir_dirty_folio(struct address_space *mapping, argument
113 struct address_space *mapping = req->vnode->netfs.inode.i_mapping; local
117 XA_STATE(xas, &mapping->i_pages, 0);
127 ASSERTCMP(folio->mapping, ==, mapping);
187 struct address_space *mapping = dvnode->netfs.inode.i_mapping; local
192 XA_STATE(xas, &mapping->i_pages, 0);
205 BUG_ON(folio->mapping != mapping);
221 struct address_space *mapping local
273 struct address_space *mapping = dvnode->netfs.inode.i_mapping; variable in typeref:struct:address_space
[all...]
/linux-master/fs/reiserfs/
H A Dinode.c452 * this buffer has valid data, but isn't valid for io. mapping it to
2509 struct inode *inode = folio->mapping->host;
2573 * the btree for the mapping info, and log any direct
2724 static int reiserfs_writepages(struct address_space *mapping, argument
2727 reiserfs_wait_on_write_block(mapping->host->i_sb);
2728 return write_cache_pages(mapping, wbc, reiserfs_write_folio, NULL);
2738 struct address_space *mapping,
2748 inode = mapping->host;
2750 page = grab_cache_page_write_begin(mapping, index);
2806 struct inode *inode = page->mapping
2737 reiserfs_write_begin(struct file *file, struct address_space *mapping, loff_t pos, unsigned len, struct page **pagep, void **fsdata) argument
2864 reiserfs_write_end(struct file *file, struct address_space *mapping, loff_t pos, unsigned len, unsigned copied, struct page *page, void *fsdata) argument
3178 reiserfs_dirty_folio(struct address_space *mapping, struct folio *folio) argument
[all...]
/linux-master/arch/mips/sgi-ip22/
H A Dip22-platform.c6 #include <linux/dma-mapping.h>
/linux-master/drivers/net/wireless/ralink/rt2x00/
H A Drt2x00mmio.c13 #include <linux/dma-mapping.h>
H A Drt2x00pci.c13 #include <linux/dma-mapping.h>
/linux-master/drivers/crypto/cavium/nitrox/
H A Dnitrox_dev.h5 #include <linux/dma-mapping.h>
/linux-master/drivers/infiniband/hw/mthca/
H A Dmthca_provider.h49 DEFINE_DMA_UNMAP_ADDR(mapping);
/linux-master/include/misc/
H A Docxl.h128 * @mapping: The mapping to unmap when the context is closed (may be NULL)
131 struct address_space *mapping);
/linux-master/drivers/i2c/busses/
H A Di2c-at91.h18 #include <linux/dma-mapping.h>
/linux-master/arch/microblaze/kernel/
H A Dsetup.c32 #include <linux/dma-mapping.h>
/linux-master/drivers/crypto/ccree/
H A Dcc_driver.h16 #include <linux/dma-mapping.h>
/linux-master/drivers/video/fbdev/omap2/omapfb/
H A Domapfb.h20 #include <linux/dma-mapping.h>
/linux-master/drivers/scsi/megaraid/
H A Dmega_common.h26 #include <linux/dma-mapping.h>
137 * available and MRAID_GET_DEVICE_MAP() can be called whenever the mapping is
234 * Get an index into our table of drive ids mapping \
/linux-master/drivers/infiniband/core/
H A Dmad_priv.h75 u64 mapping; member in struct:ib_mad_private_header
/linux-master/drivers/scsi/
H A Dlasi700.c29 #include <linux/dma-mapping.h>

Completed in 711 milliseconds

<<11121314151617181920>>