Searched refs:uptodate (Results 1 - 25 of 43) sorted by relevance

12

/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/fs/ocfs2/
H A DMakefile29 uptodate.o \
H A Dbuffer_head_io.h32 int uptodate);
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/mm/
H A Dpage_io.c49 const int uptodate = test_bit(BIO_UPTODATE, &bio->bi_flags); local
55 if (!uptodate) {
79 const int uptodate = test_bit(BIO_UPTODATE, &bio->bi_flags); local
85 if (!uptodate) {
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/openssl/crypto/engine/
H A Deng_table.c84 int uptodate; member in struct:st_engine_pile
159 fnd->uptodate = 1;
176 fnd->uptodate = 0;
204 pile->uptodate = 0;
283 if(fnd->uptodate)
341 /* Whatever happened - we should "untouch" our uptodate file seeing as
347 fnd->uptodate = 1;
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/openssl-0.9.8e/crypto/engine/
H A Deng_table.c70 int uptodate; member in struct:st_engine_pile
138 fnd->uptodate = 0;
155 fnd->uptodate = 1;
183 pile->uptodate = 1;
256 if(fnd->uptodate)
301 if(fnd) fnd->uptodate = 1;
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/include/linux/
H A Dbuffer_head.h49 typedef void (bh_end_io_t)(struct buffer_head *bh, int uptodate);
114 BUFFER_FNS(Uptodate, uptodate)
156 void end_buffer_read_sync(struct buffer_head *bh, int uptodate);
157 void end_buffer_write_sync(struct buffer_head *bh, int uptodate);
H A Dblkdev.h714 extern void end_request(struct request *req, int uptodate);
718 * end_that_request_first/chunk() takes an uptodate argument. we account
720 * any other < 0 value is the direct error type. An uptodate value of
723 #define end_io_error(uptodate) (unlikely((uptodate) <= 0))
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/drivers/ide/
H A Dide-io.c58 int uptodate, int nr_sectors)
66 if (blk_noretry_request(rq) && end_io_error(uptodate))
69 if (!blk_fs_request(rq) && end_io_error(uptodate) && !rq->errors)
81 if (!end_that_request_first(rq, uptodate, nr_sectors)) {
86 end_that_request_last(rq, uptodate);
96 * @uptodate:
104 int ide_end_request (ide_drive_t *drive, int uptodate, int nr_sectors) argument
120 ret = __ide_end_request(drive, rq, uptodate, nr_sectors);
237 * @uptodate:
250 int uptodate, in
57 __ide_end_request(ide_drive_t *drive, struct request *rq, int uptodate, int nr_sectors) argument
249 ide_end_dequeued_request(ide_drive_t *drive, struct request *rq, int uptodate, int nr_sectors) argument
[all...]
H A Dide-cd.c329 static void cdrom_end_request (ide_drive_t *drive, int uptodate) argument
334 if (blk_sense_request(rq) && uptodate) {
369 uptodate = 1;
376 ide_end_request(drive, uptodate, nsectors);
1524 int stat, ireason, len, sectors_to_transfer, uptodate; local
1566 uptodate = 1;
1570 uptodate = 0;
1572 cdrom_end_request(drive, uptodate);
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/drivers/s390/char/
H A Dtape_block.c66 tapeblock_end_request(struct request *req, int uptodate) argument
68 if (end_that_request_first(req, uptodate, req->hard_nr_sectors))
70 end_that_request_last(req, uptodate);
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/drivers/message/i2o/
H A Di2o_block.c437 * @uptodate: 1 for success, 0 for I/O error, < 0 for specific error
443 static void i2o_block_end_request(struct request *req, int uptodate, argument
451 if (end_that_request_chunk(req, uptodate, nr_bytes)) {
457 if (end_io_error(uptodate))
465 end_that_request_last(req, uptodate);
493 int uptodate = 1; local
526 uptodate = 0;
529 i2o_block_end_request(req, uptodate, le32_to_cpu(msg->body[1]));
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/drivers/md/
H A Draid5.c529 int uptodate = test_bit(BIO_UPTODATE, &bi->bi_flags); local
540 PRINTK("end_read_request %llu/%d, count: %d, uptodate %d.\n",
542 uptodate);
548 if (uptodate) {
607 int uptodate = test_bit(BIO_UPTODATE, &bi->bi_flags); local
616 PRINTK("end_write_request %llu/%d, count %d, uptodate: %d.\n",
618 uptodate);
624 if (!uptodate)
1108 printk("block %d/%d not uptodate on parity calc\n", i,count);
1356 int locked=0, uptodate local
1893 int locked=0, uptodate=0, to_read=0, to_write=0, failed=0, written=0; local
2719 int uptodate = test_bit(BIO_UPTODATE, &bi->bi_flags); local
[all...]
H A Draid1.c260 int uptodate = test_bit(BIO_UPTODATE, &bio->bi_flags); local
274 if (uptodate)
279 * Here we redefine "uptodate" to mean "Don't want to retry"
286 uptodate = 1;
290 if (uptodate)
309 int uptodate = test_bit(BIO_UPTODATE, &bio->bi_flags); local
333 if (!uptodate) {
1157 int uptodate = test_bit(BIO_UPTODATE, &bio->bi_flags); local
1172 if (!uptodate) {
1189 md_done_sync(mddev, r1_bio->sectors, uptodate);
[all...]
H A Dmultipath.c92 int uptodate = test_bit(BIO_UPTODATE, &bio->bi_flags); local
100 if (uptodate)
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/drivers/block/
H A Dnbd.c102 int uptodate = (req->errors == 0) ? 1 : 0; local
107 req, uptodate? "done": "failed");
110 if (!end_that_request_first(req, uptodate, req->nr_sectors)) {
111 end_that_request_last(req, uptodate);
H A Dviodasd.c276 static void viodasd_end_request(struct request *req, int uptodate, argument
279 if (end_that_request_first(req, uptodate, num_sectors))
282 end_that_request_last(req, uptodate);
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/fs/
H A Dmpage.c44 const int uptodate = test_bit(BIO_UPTODATE, &bio->bi_flags); local
56 if (uptodate) {
70 const int uptodate = test_bit(BIO_UPTODATE, &bio->bi_flags); local
82 if (!uptodate){
618 * we cannot drop the bh if the page is not uptodate
H A Dbuffer.c116 void end_buffer_read_sync(struct buffer_head *bh, int uptodate) argument
118 if (uptodate) {
128 void end_buffer_write_sync(struct buffer_head *bh, int uptodate) argument
132 if (uptodate) {
367 static void end_buffer_async_read(struct buffer_head *bh, int uptodate) argument
378 if (uptodate) {
412 * uptodate then we can set the page uptodate.
429 static void end_buffer_async_write(struct buffer_head *bh, int uptodate) argument
440 if (uptodate) {
882 int uptodate = PageUptodate(page); local
2108 end_buffer_read_nobh(struct buffer_head *bh, int uptodate) argument
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/block/
H A Dll_rw_blk.c362 int uptodate; local
377 uptodate = q->orderr ? q->orderr : 1;
381 end_that_request_first(rq, uptodate, rq->hard_nr_sectors);
382 end_that_request_last(rq, uptodate);
3394 static int __end_that_request_first(struct request *req, int uptodate, argument
3403 * extend uptodate bool to allow < 0 value to be direct io error
3406 if (end_io_error(uptodate))
3407 error = !uptodate ? -EIO : uptodate;
3416 if (!uptodate) {
3518 end_that_request_first(struct request *req, int uptodate, int nr_sectors) argument
3540 end_that_request_chunk(struct request *req, int uptodate, int nr_bytes) argument
3626 end_that_request_last(struct request *req, int uptodate) argument
3663 end_request(struct request *req, int uptodate) argument
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/drivers/cdrom/
H A Dviocd.c379 static void viocd_end_request(struct request *req, int uptodate) argument
392 if (end_that_request_first(req, uptodate, nsectors))
396 end_that_request_last(req, uptodate);
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/fs/xfs/linux-2.6/
H A Dxfs_aops.c739 int count = 0, done = 0, uptodate = 1; local
781 uptodate = 0;
826 if (uptodate && bh == head)
897 * that matter are dirty due to mmap writes, and therefore bh uptodate is
898 * only valid if the page itself isn't completely uptodate. Some layers
914 int unmapped) /* also implies page uptodate */
925 int flags, err, iomap_valid = 0, uptodate = 1; local
980 uptodate = 0;
1099 if (uptodate && bh == head)
1146 * allocate space if the page is uptodate
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/drivers/scsi/
H A Dscsi_lib.c246 static void scsi_end_async(struct request *req, int uptodate) argument
639 * uptodate - 1 if I/O indicates success, <= 0 for I/O error.
654 static struct scsi_cmnd *scsi_end_request(struct scsi_cmnd *cmd, int uptodate, argument
665 if (end_that_request_chunk(req, uptodate, bytes)) {
672 if (!uptodate && blk_noretry_request(req))
693 end_that_request_last(req, uptodate);
1082 * This will complete the whole command with uptodate=1 so
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/fs/ntfs/
H A Daops.c45 * @uptodate: whether @bh is now uptodate or not
52 * page has been completed and mark the page uptodate or set the error bit on
58 static void ntfs_end_buffer_async_read(struct buffer_head *bh, int uptodate) argument
71 if (likely(uptodate)) {
125 * If none of the buffers had errors then we can set the page uptodate,
170 * applies the mst fixups to the page before finally marking it uptodate and
331 * of the page and set the buffer uptodate.
660 // Zero any non-uptodate buffers up to i_size.
661 // Set them uptodate an
791 int uptodate = 1; local
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/fs/hfsplus_journal/
H A Dcommit.c29 static void hfsplus_jbd_end_buffer_io_sync(struct buffer_head *bh, int uptodate) argument
32 if (uptodate)
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/fs/jbd/
H A Dcommit.c27 static void journal_end_buffer_io_sync(struct buffer_head *bh, int uptodate) argument
30 if (uptodate)

Completed in 291 milliseconds

12