Searched refs:tbh (Results 1 - 5 of 5) sorted by path

/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/drivers/char/
H A Dtty_io.c408 struct tty_buffer **tbh = &tty->buf.free; local
409 while((*tbh) != NULL) {
410 struct tty_buffer *t = *tbh;
412 *tbh = t->next;
420 tbh = &((*tbh)->next);
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/fs/ntfs/
H A Daops.c348 struct buffer_head *tbh; local
352 tbh = arr[i];
353 lock_buffer(tbh);
354 tbh->b_end_io = ntfs_end_buffer_async_read;
355 set_buffer_async_read(tbh);
359 tbh = arr[i];
360 if (likely(!buffer_uptodate(tbh)))
361 submit_bh(READ, tbh);
363 ntfs_end_buffer_async_read(tbh, 1);
897 struct buffer_head *bh, *head, *tbh, *rec_start_b local
[all...]
H A Dcompress.c617 struct buffer_head *tbh = bhs[i]; local
619 if (unlikely(test_set_buffer_locked(tbh)))
621 if (unlikely(buffer_uptodate(tbh))) {
622 unlock_buffer(tbh);
625 get_bh(tbh);
626 tbh->b_end_io = end_buffer_read_sync;
627 submit_bh(READ, tbh);
632 struct buffer_head *tbh = bhs[i]; local
634 if (buffer_uptodate(tbh))
636 wait_on_buffer(tbh);
[all...]
H A Dmft.c581 struct buffer_head *tbh = bhs[i_bhs]; local
583 if (unlikely(test_set_buffer_locked(tbh)))
585 BUG_ON(!buffer_uptodate(tbh));
586 clear_buffer_dirty(tbh);
587 get_bh(tbh);
588 tbh->b_end_io = end_buffer_write_sync;
589 submit_bh(WRITE, tbh);
593 struct buffer_head *tbh = bhs[i_bhs]; local
595 wait_on_buffer(tbh);
596 if (unlikely(!buffer_uptodate(tbh))) {
774 struct buffer_head *tbh = bhs[i_bhs]; local
789 struct buffer_head *tbh = bhs[i_bhs]; local
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/fs/reiserfs/
H A Djournal.c990 struct buffer_head *tbh = NULL; local
1060 tbh = journal_find_get_block(s, bn);
1061 if (tbh) {
1062 if (buffer_dirty(tbh))
1063 ll_rw_block(WRITE, 1, &tbh) ;
1064 put_bh(tbh) ;
1090 tbh = journal_find_get_block(s, bn);
1091 wait_on_buffer(tbh);
1095 if (buffer_dirty(tbh)) /* redundant, sync_dirty_buffer() checks */
1096 sync_dirty_buffer(tbh);
[all...]

Completed in 137 milliseconds