Searched refs:bhs (Results 1 - 25 of 43) sorted by path

12

/linux-master/arch/arm/mm/
H A Dcache-v4wt.S87 bhs __flush_whole_cache
H A Dcache-fa.S87 bhs __flush_whole_cache @ flush whole D cache
H A Dcache-v4wb.S114 bhs __flush_whole_cache @ flush whole D cache
H A Dproc-arm1020.S172 bhs __flush_whole_cache
H A Dproc-arm1020e.S171 bhs __flush_whole_cache
H A Dproc-arm1022.S170 bhs __flush_whole_cache
H A Dproc-arm1026.S165 bhs __flush_whole_cache
H A Dproc-arm920.S156 bhs __flush_whole_cache
H A Dproc-arm922.S158 bhs __flush_whole_cache
H A Dproc-arm946.S133 bhs __flush_whole_cache
H A Dproc-xsc3.S193 bhs __flush_whole_cache
H A Dproc-xscale.S234 bhs __flush_whole_cache
/linux-master/arch/arm/boot/compressed/
H A Dhead.S461 bhs wont_overwrite
/linux-master/arch/arm/lib/
H A Dfindbit.S54 bhs 3b
/linux-master/drivers/scsi/cxgbi/cxgb4i/
H A Dcxgb4i.c1285 unsigned char *bhs; local
1302 bhs = skb->data;
1304 dlen = ntohl(*(unsigned int *)(bhs + 4)) & 0xFFFFFF;
1325 csk, skb, *bhs, hlen, dlen,
1326 ntohl(*((unsigned int *)(bhs + 16))),
1327 ntohl(*((unsigned int *)(bhs + 24))));
1479 pr_err("tid 0x%x, rcv RX_DATA_DDP w/o pdu bhs.\n", csk->tid);
/linux-master/fs/adfs/
H A Dadfs.h95 struct buffer_head **bhs; member in struct:adfs_dir
H A Ddir.c30 memcpy(dst, dir->bhs[index]->b_data + offset, remain);
37 memcpy(dst, dir->bhs[index]->b_data + offset, len);
55 memcpy(dir->bhs[index]->b_data + offset, src, remain);
62 memcpy(dir->bhs[index]->b_data + offset, src, len);
71 if (dir->bhs != dir->bh)
72 kfree(dir->bhs);
73 dir->bhs = NULL;
82 brelse(dir->bhs[i]);
92 bforget(dir->bhs[i]);
100 struct buffer_head **bhs; local
[all...]
H A Ddir_fplus.c83 bp = (void *)dir->bhs[bi]->b_data;
84 bs = dir->bhs[bi]->b_size;
116 dir->bighead = h = (void *)dir->bhs[0]->b_data;
136 (dir->bhs[dir->nr_buffers - 1]->b_data + (sb->s_blocksize - 8));
/linux-master/fs/
H A Dbuffer.c1278 * The bhs[] array is sorted - newest buffer is at bhs[0]. Buffers have their
1293 struct buffer_head *bhs[BH_LRU_SIZE]; member in struct:bh_lru
1340 swap(evictee, b->bhs[i]);
1368 struct buffer_head *bh = __this_cpu_read(bh_lrus.bhs[i]);
1374 __this_cpu_write(bh_lrus.bhs[i],
1375 __this_cpu_read(bh_lrus.bhs[i - 1]));
1378 __this_cpu_write(bh_lrus.bhs[0], bh);
1487 brelse(b->bhs[i]);
1488 b->bhs[
3094 __bh_read_batch(int nr, struct buffer_head *bhs[], blk_opf_t op_flags, bool force_lock) argument
[all...]
/linux-master/fs/exfat/
H A Dexfat_fs.h561 int exfat_update_bhs(struct buffer_head **bhs, int nr_bhs, int sync);
H A Dmisc.c173 int exfat_update_bhs(struct buffer_head **bhs, int nr_bhs, int sync) argument
178 set_buffer_uptodate(bhs[i]);
179 mark_buffer_dirty(bhs[i]);
181 write_dirty_buffer(bhs[i], REQ_SYNC);
185 wait_on_buffer(bhs[i]);
186 if (!err && !buffer_uptodate(bhs[i]))
/linux-master/fs/ext4/
H A Dext4.h2954 bool wait, struct buffer_head **bhs);
H A Dinode.c905 bool wait, struct buffer_head **bhs)
910 bhs[i] = ext4_getblk(NULL, inode, block + i, 0 /* map_flags */);
911 if (IS_ERR(bhs[i])) {
912 err = PTR_ERR(bhs[i]);
919 /* Note that NULL bhs[i] is valid because of holes. */
920 if (bhs[i] && !ext4_buffer_uptodate(bhs[i]))
921 ext4_read_bh_lock(bhs[i], REQ_META | REQ_PRIO, false);
927 if (bhs[i])
928 wait_on_buffer(bhs[
904 ext4_bread_batch(struct inode *inode, ext4_lblk_t block, int bh_count, bool wait, struct buffer_head **bhs) argument
[all...]
H A Dmballoc.c1284 struct buffer_head *bhs; local
1310 bh = &bhs;
1432 if (bh != &bhs)
H A Dxattr.c388 struct buffer_head **bhs = bhs_inline; local
392 bhs = kmalloc_array(bh_count, sizeof(*bhs), GFP_NOFS);
393 if (!bhs)
398 true /* wait */, bhs);
404 if (!bhs[i]) {
408 memcpy((char *)buf + blocksize * i, bhs[i]->b_data,
414 brelse(bhs[i]);
416 if (bhs != bhs_inline)
417 kfree(bhs);
[all...]

Completed in 332 milliseconds

12