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

12

/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/arch/arm/boot/compressed/
H A Dhead.S239 bhs wont_overwrite
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/arch/arm/mm/
H A Dcache-v4wb.S105 bhs __flush_whole_cache @ flush whole D cache
H A Dcache-v4wt.S79 bhs __flush_whole_cache
H A Dproc-arm1020.S175 bhs __flush_whole_cache
H A Dproc-arm1020e.S174 bhs __flush_whole_cache
H A Dproc-arm1022.S162 bhs __flush_whole_cache
H A Dproc-arm1026.S157 bhs __flush_whole_cache
H A Dproc-arm920.S164 bhs __flush_whole_cache
H A Dproc-arm922.S166 bhs __flush_whole_cache
H A Dproc-arm946.S126 bhs __flush_whole_cache
H A Dproc-xsc3.S192 bhs __flush_whole_cache
H A Dproc-xscale.S222 bhs __flush_whole_cache
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/arch/cris/arch-v32/kernel/
H A Dhead.S307 bhs _no_romfs_in_flash ; R9 points outside the flash area.
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/drivers/misc/
H A Dlkdtm.c152 void jp_ll_rw_block(int rw, int nr, struct buffer_head *bhs[]) argument
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/fs/
H A Dbuffer.c1126 * The bhs[] array is sorted - newest buffer is at bhs[0]. Buffers have their
1141 struct buffer_head *bhs[BH_LRU_SIZE]; member in struct:bh_lru
1172 if (lru->bhs[0] != bh) {
1173 struct buffer_head *bhs[BH_LRU_SIZE]; local
1178 bhs[out++] = bh;
1180 struct buffer_head *bh2 = lru->bhs[in];
1189 bhs[out++] = bh2;
1194 bhs[out++] = NULL;
1195 memcpy(lru->bhs, bh
2577 ll_rw_block(int rw, int nr, struct buffer_head *bhs[]) argument
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/fs/fat/
H A Ddir.c999 struct buffer_head **bhs, int nr_bhs)
1009 bhs[n] = sb_getblk(sb, blknr);
1010 if (!bhs[n]) {
1014 memset(bhs[n]->b_data, 0, sb->s_blocksize);
1015 set_buffer_uptodate(bhs[n]);
1016 mark_buffer_dirty(bhs[n]);
1022 err = fat_sync_bhs(bhs, n);
1027 brelse(bhs[i]);
1032 err = fat_sync_bhs(bhs, n);
1037 brelse(bhs[
998 fat_zeroed_cluster(struct inode *dir, sector_t blknr, int nr_used, struct buffer_head **bhs, int nr_bhs) argument
1051 struct buffer_head *bhs[MAX_BUF_PER_PAGE]; local
1116 struct buffer_head *bhs[MAX_BUF_PER_PAGE]; local
1195 struct buffer_head *bh, *prev, *bhs[3]; /* 32*slots (672bytes) */ local
[all...]
H A Dfatent.c42 struct buffer_head **bhs = fatent->bhs; local
44 WARN_ON(offset >= (bhs[0]->b_size - 1));
45 fatent->u.ent12_p[0] = bhs[0]->b_data + offset;
46 fatent->u.ent12_p[1] = bhs[0]->b_data + (offset + 1);
48 WARN_ON(offset != (bhs[0]->b_size - 1));
49 fatent->u.ent12_p[0] = bhs[0]->b_data + offset;
50 fatent->u.ent12_p[1] = bhs[1]->b_data;
57 fatent->u.ent16_p = (__le16 *)(fatent->bhs[0]->b_data + offset);
63 fatent->u.ent32_p = (__le32 *)(fatent->bhs[
69 struct buffer_head **bhs = fatent->bhs; local
190 struct buffer_head **bhs = fatent->bhs; local
306 struct buffer_head **bhs = fatent->bhs; local
346 fat_mirror_bhs(struct super_block *sb, struct buffer_head **bhs, int nr_bhs) argument
415 fat_collect_bhs(struct buffer_head **bhs, int *nr_bhs, struct fat_entry *fatent) argument
439 struct buffer_head *bhs[MAX_BUF_PER_PAGE]; local
526 struct buffer_head *bhs[MAX_BUF_PER_PAGE]; local
[all...]
H A Dmisc.c196 int fat_sync_bhs(struct buffer_head **bhs, int nr_bhs) argument
200 ll_rw_block(SWRITE, nr_bhs, bhs);
202 wait_on_buffer(bhs[i]);
203 if (buffer_eopnotsupp(bhs[i])) {
204 clear_buffer_eopnotsupp(bhs[i]);
206 } else if (!err && !buffer_uptodate(bhs[i]))
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/fs/hfsplus_journal/
H A Dcheckpoint.c203 __flush_batch(hfsplus_jbd_t *journal, struct buffer_head **bhs, int *batch_count) argument
208 ll_rw_block(SWRITE, *batch_count, bhs);
211 struct buffer_head *bh = bhs[i];
229 struct buffer_head **bhs, int *batch_count,
249 bhs[*batch_count] = bh;
253 __flush_batch(journal, bhs, batch_count);
288 struct buffer_head *bhs[NR_BATCH]; local
335 retry = __flush_buffer(journal, jh, bhs, &batch_count, &drop_count);
343 __flush_batch(journal, bhs, &batch_count);
228 __flush_buffer(hfsplus_jbd_t *journal, struct hfsplus_jbd_head *jh, struct buffer_head **bhs, int *batch_count, int *drop_count) argument
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/fs/isofs/
H A Dcompress.c168 struct buffer_head *bhs[needblocks+1]; local
174 memset(bhs, 0, (needblocks+1)*sizeof(struct buffer_head *));
175 haveblocks = isofs_get_blocks(inode, blockptr, bhs, needblocks);
176 ll_rw_block(READ, haveblocks, bhs);
178 bhptr = &bhs[0];
288 if ( bhs[i] )
289 brelse(bhs[i]);
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/fs/jbd/
H A Dcheckpoint.c211 __flush_batch(journal_t *journal, struct buffer_head **bhs, int *batch_count) argument
215 ll_rw_block(SWRITE, *batch_count, bhs);
217 struct buffer_head *bh = bhs[i];
235 struct buffer_head **bhs, int *batch_count)
279 bhs[*batch_count] = bh;
285 __flush_batch(journal, bhs, batch_count);
335 struct buffer_head *bhs[NR_BATCH]; local
349 retry = __process_buffer(journal, jh, bhs,&batch_count);
362 __flush_batch(journal, bhs, &batch_count);
234 __process_buffer(journal_t *journal, struct journal_head *jh, struct buffer_head **bhs, int *batch_count) argument
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/fs/jbd2/
H A Dcheckpoint.c211 __flush_batch(journal_t *journal, struct buffer_head **bhs, int *batch_count) argument
215 ll_rw_block(SWRITE, *batch_count, bhs);
217 struct buffer_head *bh = bhs[i];
235 struct buffer_head **bhs, int *batch_count)
279 bhs[*batch_count] = bh;
285 __flush_batch(journal, bhs, batch_count);
335 struct buffer_head *bhs[NR_BATCH]; local
349 retry = __process_buffer(journal, jh, bhs,&batch_count);
362 __flush_batch(journal, bhs, &batch_count);
234 __process_buffer(journal_t *journal, struct journal_head *jh, struct buffer_head **bhs, int *batch_count) argument
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/fs/ntfs/
H A Daops.c898 struct buffer_head *bhs[MAX_BUF_PER_PAGE]; local
1062 while (bhs[--nr_bhs] != rec_start_bh)
1079 bhs[nr_bhs++] = bh;
1097 tbh = bhs[i];
1121 bhs[i] = NULL;
1149 clear_buffer_dirty(bhs[i]);
1150 bhs[i] = NULL;
1162 tbh = bhs[i];
1181 tbh = bhs[i];
1214 tbh = bhs[
[all...]
H A Dcompress.c454 struct buffer_head **bhs; local
498 bhs = kmalloc(bhs_size, GFP_NOFS);
500 if (unlikely(!pages || !bhs)) {
501 kfree(bhs);
605 if (unlikely(!(bhs[nr_bhs] = sb_getblk(sb, block))))
617 struct buffer_head *tbh = bhs[i];
632 struct buffer_head *tbh = bhs[i];
674 memcpy(cb_pos, bhs[i]->b_data, block_size);
842 brelse(bhs[i]);
849 kfree(bhs);
[all...]
H A Dmft.c465 struct buffer_head *bhs[max_bhs]; local
573 bhs[nr_bhs++] = bh;
581 struct buffer_head *tbh = bhs[i_bhs];
593 struct buffer_head *tbh = bhs[i_bhs];
608 clear_buffer_dirty(bhs[i_bhs]);
670 struct buffer_head *bhs[max_bhs]; local
756 bhs[nr_bhs++] = bh;
774 struct buffer_head *tbh = bhs[i_bhs];
789 struct buffer_head *tbh = bhs[i_bhs];
822 clear_buffer_dirty(bhs[i_bh
[all...]

Completed in 185 milliseconds

12