Merge branch 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/bart/ide-2.6
authorLinus Torvalds <torvalds@linux-foundation.org>
Sat, 2 May 2009 23:48:32 +0000 (16:48 -0700)
committerLinus Torvalds <torvalds@linux-foundation.org>
Sat, 2 May 2009 23:48:32 +0000 (16:48 -0700)
* 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/bart/ide-2.6:
  ide-cd: fix REQ_QUIET tests in cdrom_decode_status

Fix up trivial conflicts in include/linux/blkdev.h

1  2 
include/linux/blkdev.h

diff --combined include/linux/blkdev.h
index 2755d5c6da2227d0987ab93713eb18a38733f390,6f841fb1be3041aae3241aa73e48667992565a56..b4f71f1a4af72bd7c68c6f6fe707f43e6a50888f
@@@ -118,7 -118,6 +118,7 @@@ enum rq_flag_bits 
        __REQ_COPY_USER,        /* contains copies of user pages */
        __REQ_INTEGRITY,        /* integrity metadata has been remapped */
        __REQ_NOIDLE,           /* Don't anticipate more IO after this one */
 +      __REQ_IO_STAT,          /* account I/O stat */
        __REQ_NR_BITS,          /* stops here */
  };
  
  #define REQ_COPY_USER (1 << __REQ_COPY_USER)
  #define REQ_INTEGRITY (1 << __REQ_INTEGRITY)
  #define REQ_NOIDLE    (1 << __REQ_NOIDLE)
 +#define REQ_IO_STAT   (1 << __REQ_IO_STAT)
  
  #define BLK_MAX_CDB   16
  
@@@ -600,7 -598,7 +600,8 @@@ enum 
                                 blk_failfast_transport(rq) ||  \
                                 blk_failfast_driver(rq))
  #define blk_rq_started(rq)    ((rq)->cmd_flags & REQ_STARTED)
 +#define blk_rq_io_stat(rq)    ((rq)->cmd_flags & REQ_IO_STAT)
+ #define blk_rq_quiet(rq)      ((rq)->cmd_flags & REQ_QUIET)
  
  #define blk_account_rq(rq)    (blk_rq_started(rq) && (blk_fs_request(rq) || blk_discard_rq(rq)))