Function report

Linux Kernel

v5.5.9

Brick Technologies Co., Ltd

Source Code:fs\iomap\buffered-io.c Create Date:2022-07-28 20:31:51
Last Modify:2020-03-12 14:18:49 Copyright©Brick
home page Tree
Annotation kernel can get tool activityDownload SCCTChinese

Name:iomap_read_inline_data

Proto:static void iomap_read_inline_data(struct inode *inode, struct page *page, struct iomap *iomap)

Type:void

Parameter:

TypeParameterName
struct inode *inode
struct page *page
struct iomap *iomap
226  size = NOTE: in a 32bit arch with a preemptable kernel and* an UP compile the i_size_read/write must be atomic* with respect to the local cpu (unlike with preempt disabled),* but they don't need to be atomic with respect to other cpus like in* true SMP (so they
229  If PageUptodate(page) Then Return
232  BUG_ON( Our offset within mapping. )
233  BUG_ON(size > PAGE_SIZE - offset_in_page(inline_data))
235  addr = kmap_atomic(page)
236  memcpy(addr, inline_data, size)
237  memset(addr + size, 0, PAGE_SIZE - size)
238  Prevent people trying to call kunmap_atomic() as if it were kunmap()* kunmap_atomic() should get the return value of kmap_atomic, not the page.(addr)
239  SetPageUptodate(page)
Caller
NameDescribe
iomap_readpage_actor
iomap_write_begin