diff options
Diffstat (limited to 'include')
-rw-r--r-- | include/linux/blkdev.h | 50 | ||||
-rw-r--r-- | include/linux/buffer_head.h | 16 | ||||
-rw-r--r-- | include/linux/compat_ioctl.h | 2 | ||||
-rw-r--r-- | include/linux/elevator.h | 3 | ||||
-rw-r--r-- | include/linux/fs.h | 25 | ||||
-rw-r--r-- | include/linux/genhd.h | 4 | ||||
-rw-r--r-- | include/linux/mpage.h | 3 | ||||
-rw-r--r-- | include/linux/raid/md.h | 3 | ||||
-rw-r--r-- | include/linux/raid/md_k.h | 3 | ||||
-rw-r--r-- | include/scsi/scsi_tcq.h | 3 |
10 files changed, 94 insertions, 18 deletions
diff --git a/include/linux/blkdev.h b/include/linux/blkdev.h index 2c01a90998a7..3e36107d342a 100644 --- a/include/linux/blkdev.h +++ b/include/linux/blkdev.h | |||
@@ -16,6 +16,22 @@ | |||
16 | 16 | ||
17 | #include <asm/scatterlist.h> | 17 | #include <asm/scatterlist.h> |
18 | 18 | ||
19 | #ifdef CONFIG_LBD | ||
20 | # include <asm/div64.h> | ||
21 | # define sector_div(a, b) do_div(a, b) | ||
22 | #else | ||
23 | # define sector_div(n, b)( \ | ||
24 | { \ | ||
25 | int _res; \ | ||
26 | _res = (n) % (b); \ | ||
27 | (n) /= (b); \ | ||
28 | _res; \ | ||
29 | } \ | ||
30 | ) | ||
31 | #endif | ||
32 | |||
33 | #ifdef CONFIG_BLOCK | ||
34 | |||
19 | struct scsi_ioctl_command; | 35 | struct scsi_ioctl_command; |
20 | 36 | ||
21 | struct request_queue; | 37 | struct request_queue; |
@@ -818,24 +834,30 @@ struct work_struct; | |||
818 | int kblockd_schedule_work(struct work_struct *work); | 834 | int kblockd_schedule_work(struct work_struct *work); |
819 | void kblockd_flush(void); | 835 | void kblockd_flush(void); |
820 | 836 | ||
821 | #ifdef CONFIG_LBD | ||
822 | # include <asm/div64.h> | ||
823 | # define sector_div(a, b) do_div(a, b) | ||
824 | #else | ||
825 | # define sector_div(n, b)( \ | ||
826 | { \ | ||
827 | int _res; \ | ||
828 | _res = (n) % (b); \ | ||
829 | (n) /= (b); \ | ||
830 | _res; \ | ||
831 | } \ | ||
832 | ) | ||
833 | #endif | ||
834 | |||
835 | #define MODULE_ALIAS_BLOCKDEV(major,minor) \ | 837 | #define MODULE_ALIAS_BLOCKDEV(major,minor) \ |
836 | MODULE_ALIAS("block-major-" __stringify(major) "-" __stringify(minor)) | 838 | MODULE_ALIAS("block-major-" __stringify(major) "-" __stringify(minor)) |
837 | #define MODULE_ALIAS_BLOCKDEV_MAJOR(major) \ | 839 | #define MODULE_ALIAS_BLOCKDEV_MAJOR(major) \ |
838 | MODULE_ALIAS("block-major-" __stringify(major) "-*") | 840 | MODULE_ALIAS("block-major-" __stringify(major) "-*") |
839 | 841 | ||
840 | 842 | ||
843 | #else /* CONFIG_BLOCK */ | ||
844 | /* | ||
845 | * stubs for when the block layer is configured out | ||
846 | */ | ||
847 | #define buffer_heads_over_limit 0 | ||
848 | |||
849 | static inline long blk_congestion_wait(int rw, long timeout) | ||
850 | { | ||
851 | return timeout; | ||
852 | } | ||
853 | |||
854 | static inline long nr_blockdev_pages(void) | ||
855 | { | ||
856 | return 0; | ||
857 | } | ||
858 | |||
859 | static inline void exit_io_context(void) {} | ||
860 | |||
861 | #endif /* CONFIG_BLOCK */ | ||
862 | |||
841 | #endif | 863 | #endif |
diff --git a/include/linux/buffer_head.h b/include/linux/buffer_head.h index 64b508e35d2a..131ffd37e716 100644 --- a/include/linux/buffer_head.h +++ b/include/linux/buffer_head.h | |||
@@ -14,6 +14,8 @@ | |||
14 | #include <linux/wait.h> | 14 | #include <linux/wait.h> |
15 | #include <asm/atomic.h> | 15 | #include <asm/atomic.h> |
16 | 16 | ||
17 | #ifdef CONFIG_BLOCK | ||
18 | |||
17 | enum bh_state_bits { | 19 | enum bh_state_bits { |
18 | BH_Uptodate, /* Contains valid data */ | 20 | BH_Uptodate, /* Contains valid data */ |
19 | BH_Dirty, /* Is dirty */ | 21 | BH_Dirty, /* Is dirty */ |
@@ -301,4 +303,18 @@ static inline void lock_buffer(struct buffer_head *bh) | |||
301 | } | 303 | } |
302 | 304 | ||
303 | extern int __set_page_dirty_buffers(struct page *page); | 305 | extern int __set_page_dirty_buffers(struct page *page); |
306 | |||
307 | #else /* CONFIG_BLOCK */ | ||
308 | |||
309 | static inline void buffer_init(void) {} | ||
310 | static inline int try_to_free_buffers(struct page *page) { return 1; } | ||
311 | static inline int sync_blockdev(struct block_device *bdev) { return 0; } | ||
312 | static inline int inode_has_buffers(struct inode *inode) { return 0; } | ||
313 | static inline void invalidate_inode_buffers(struct inode *inode) {} | ||
314 | static inline int remove_inode_buffers(struct inode *inode) { return 1; } | ||
315 | static inline int sync_mapping_buffers(struct address_space *mapping) { return 0; } | ||
316 | static inline void invalidate_bdev(struct block_device *bdev, int destroy_dirty_buffers) {} | ||
317 | |||
318 | |||
319 | #endif /* CONFIG_BLOCK */ | ||
304 | #endif /* _LINUX_BUFFER_HEAD_H */ | 320 | #endif /* _LINUX_BUFFER_HEAD_H */ |
diff --git a/include/linux/compat_ioctl.h b/include/linux/compat_ioctl.h index 98d40e08ba6e..d61ef5951538 100644 --- a/include/linux/compat_ioctl.h +++ b/include/linux/compat_ioctl.h | |||
@@ -90,6 +90,7 @@ COMPATIBLE_IOCTL(FDTWADDLE) | |||
90 | COMPATIBLE_IOCTL(FDFMTTRK) | 90 | COMPATIBLE_IOCTL(FDFMTTRK) |
91 | COMPATIBLE_IOCTL(FDRAWCMD) | 91 | COMPATIBLE_IOCTL(FDRAWCMD) |
92 | /* 0x12 */ | 92 | /* 0x12 */ |
93 | #ifdef CONFIG_BLOCK | ||
93 | COMPATIBLE_IOCTL(BLKRASET) | 94 | COMPATIBLE_IOCTL(BLKRASET) |
94 | COMPATIBLE_IOCTL(BLKROSET) | 95 | COMPATIBLE_IOCTL(BLKROSET) |
95 | COMPATIBLE_IOCTL(BLKROGET) | 96 | COMPATIBLE_IOCTL(BLKROGET) |
@@ -103,6 +104,7 @@ COMPATIBLE_IOCTL(BLKTRACESETUP) | |||
103 | COMPATIBLE_IOCTL(BLKTRACETEARDOWN) | 104 | COMPATIBLE_IOCTL(BLKTRACETEARDOWN) |
104 | ULONG_IOCTL(BLKRASET) | 105 | ULONG_IOCTL(BLKRASET) |
105 | ULONG_IOCTL(BLKFRASET) | 106 | ULONG_IOCTL(BLKFRASET) |
107 | #endif | ||
106 | /* RAID */ | 108 | /* RAID */ |
107 | COMPATIBLE_IOCTL(RAID_VERSION) | 109 | COMPATIBLE_IOCTL(RAID_VERSION) |
108 | COMPATIBLE_IOCTL(GET_ARRAY_INFO) | 110 | COMPATIBLE_IOCTL(GET_ARRAY_INFO) |
diff --git a/include/linux/elevator.h b/include/linux/elevator.h index 9c5a04f6114c..b3370ef5164d 100644 --- a/include/linux/elevator.h +++ b/include/linux/elevator.h | |||
@@ -3,6 +3,8 @@ | |||
3 | 3 | ||
4 | #include <linux/percpu.h> | 4 | #include <linux/percpu.h> |
5 | 5 | ||
6 | #ifdef CONFIG_BLOCK | ||
7 | |||
6 | typedef int (elevator_merge_fn) (request_queue_t *, struct request **, | 8 | typedef int (elevator_merge_fn) (request_queue_t *, struct request **, |
7 | struct bio *); | 9 | struct bio *); |
8 | 10 | ||
@@ -203,4 +205,5 @@ enum { | |||
203 | __val; \ | 205 | __val; \ |
204 | }) | 206 | }) |
205 | 207 | ||
208 | #endif /* CONFIG_BLOCK */ | ||
206 | #endif | 209 | #endif |
diff --git a/include/linux/fs.h b/include/linux/fs.h index b73a47582dbe..5baf3a153403 100644 --- a/include/linux/fs.h +++ b/include/linux/fs.h | |||
@@ -1482,6 +1482,7 @@ extern void __init vfs_caches_init(unsigned long); | |||
1482 | extern void putname(const char *name); | 1482 | extern void putname(const char *name); |
1483 | #endif | 1483 | #endif |
1484 | 1484 | ||
1485 | #ifdef CONFIG_BLOCK | ||
1485 | extern int register_blkdev(unsigned int, const char *); | 1486 | extern int register_blkdev(unsigned int, const char *); |
1486 | extern int unregister_blkdev(unsigned int, const char *); | 1487 | extern int unregister_blkdev(unsigned int, const char *); |
1487 | extern struct block_device *bdget(dev_t); | 1488 | extern struct block_device *bdget(dev_t); |
@@ -1490,11 +1491,15 @@ extern void bd_forget(struct inode *inode); | |||
1490 | extern void bdput(struct block_device *); | 1491 | extern void bdput(struct block_device *); |
1491 | extern struct block_device *open_by_devnum(dev_t, unsigned); | 1492 | extern struct block_device *open_by_devnum(dev_t, unsigned); |
1492 | extern struct block_device *open_partition_by_devnum(dev_t, unsigned); | 1493 | extern struct block_device *open_partition_by_devnum(dev_t, unsigned); |
1493 | extern const struct file_operations def_blk_fops; | ||
1494 | extern const struct address_space_operations def_blk_aops; | 1494 | extern const struct address_space_operations def_blk_aops; |
1495 | #else | ||
1496 | static inline void bd_forget(struct inode *inode) {} | ||
1497 | #endif | ||
1498 | extern const struct file_operations def_blk_fops; | ||
1495 | extern const struct file_operations def_chr_fops; | 1499 | extern const struct file_operations def_chr_fops; |
1496 | extern const struct file_operations bad_sock_fops; | 1500 | extern const struct file_operations bad_sock_fops; |
1497 | extern const struct file_operations def_fifo_fops; | 1501 | extern const struct file_operations def_fifo_fops; |
1502 | #ifdef CONFIG_BLOCK | ||
1498 | extern int ioctl_by_bdev(struct block_device *, unsigned, unsigned long); | 1503 | extern int ioctl_by_bdev(struct block_device *, unsigned, unsigned long); |
1499 | extern int blkdev_ioctl(struct inode *, struct file *, unsigned, unsigned long); | 1504 | extern int blkdev_ioctl(struct inode *, struct file *, unsigned, unsigned long); |
1500 | extern long compat_blkdev_ioctl(struct file *, unsigned, unsigned long); | 1505 | extern long compat_blkdev_ioctl(struct file *, unsigned, unsigned long); |
@@ -1510,6 +1515,7 @@ extern void bd_release_from_disk(struct block_device *, struct gendisk *); | |||
1510 | #define bd_claim_by_disk(bdev, holder, disk) bd_claim(bdev, holder) | 1515 | #define bd_claim_by_disk(bdev, holder, disk) bd_claim(bdev, holder) |
1511 | #define bd_release_from_disk(bdev, disk) bd_release(bdev) | 1516 | #define bd_release_from_disk(bdev, disk) bd_release(bdev) |
1512 | #endif | 1517 | #endif |
1518 | #endif | ||
1513 | 1519 | ||
1514 | /* fs/char_dev.c */ | 1520 | /* fs/char_dev.c */ |
1515 | #define CHRDEV_MAJOR_HASH_SIZE 255 | 1521 | #define CHRDEV_MAJOR_HASH_SIZE 255 |
@@ -1523,14 +1529,19 @@ extern int chrdev_open(struct inode *, struct file *); | |||
1523 | extern void chrdev_show(struct seq_file *,off_t); | 1529 | extern void chrdev_show(struct seq_file *,off_t); |
1524 | 1530 | ||
1525 | /* fs/block_dev.c */ | 1531 | /* fs/block_dev.c */ |
1526 | #define BLKDEV_MAJOR_HASH_SIZE 255 | ||
1527 | #define BDEVNAME_SIZE 32 /* Largest string for a blockdev identifier */ | 1532 | #define BDEVNAME_SIZE 32 /* Largest string for a blockdev identifier */ |
1533 | |||
1534 | #ifdef CONFIG_BLOCK | ||
1535 | #define BLKDEV_MAJOR_HASH_SIZE 255 | ||
1528 | extern const char *__bdevname(dev_t, char *buffer); | 1536 | extern const char *__bdevname(dev_t, char *buffer); |
1529 | extern const char *bdevname(struct block_device *bdev, char *buffer); | 1537 | extern const char *bdevname(struct block_device *bdev, char *buffer); |
1530 | extern struct block_device *lookup_bdev(const char *); | 1538 | extern struct block_device *lookup_bdev(const char *); |
1531 | extern struct block_device *open_bdev_excl(const char *, int, void *); | 1539 | extern struct block_device *open_bdev_excl(const char *, int, void *); |
1532 | extern void close_bdev_excl(struct block_device *); | 1540 | extern void close_bdev_excl(struct block_device *); |
1533 | extern void blkdev_show(struct seq_file *,off_t); | 1541 | extern void blkdev_show(struct seq_file *,off_t); |
1542 | #else | ||
1543 | #define BLKDEV_MAJOR_HASH_SIZE 0 | ||
1544 | #endif | ||
1534 | 1545 | ||
1535 | extern void init_special_inode(struct inode *, umode_t, dev_t); | 1546 | extern void init_special_inode(struct inode *, umode_t, dev_t); |
1536 | 1547 | ||
@@ -1544,6 +1555,7 @@ extern const struct file_operations rdwr_fifo_fops; | |||
1544 | 1555 | ||
1545 | extern int fs_may_remount_ro(struct super_block *); | 1556 | extern int fs_may_remount_ro(struct super_block *); |
1546 | 1557 | ||
1558 | #ifdef CONFIG_BLOCK | ||
1547 | /* | 1559 | /* |
1548 | * return READ, READA, or WRITE | 1560 | * return READ, READA, or WRITE |
1549 | */ | 1561 | */ |
@@ -1555,9 +1567,10 @@ extern int fs_may_remount_ro(struct super_block *); | |||
1555 | #define bio_data_dir(bio) ((bio)->bi_rw & 1) | 1567 | #define bio_data_dir(bio) ((bio)->bi_rw & 1) |
1556 | 1568 | ||
1557 | extern int check_disk_change(struct block_device *); | 1569 | extern int check_disk_change(struct block_device *); |
1558 | extern int invalidate_inodes(struct super_block *); | ||
1559 | extern int __invalidate_device(struct block_device *); | 1570 | extern int __invalidate_device(struct block_device *); |
1560 | extern int invalidate_partition(struct gendisk *, int); | 1571 | extern int invalidate_partition(struct gendisk *, int); |
1572 | #endif | ||
1573 | extern int invalidate_inodes(struct super_block *); | ||
1561 | unsigned long invalidate_mapping_pages(struct address_space *mapping, | 1574 | unsigned long invalidate_mapping_pages(struct address_space *mapping, |
1562 | pgoff_t start, pgoff_t end); | 1575 | pgoff_t start, pgoff_t end); |
1563 | unsigned long invalidate_inode_pages(struct address_space *mapping); | 1576 | unsigned long invalidate_inode_pages(struct address_space *mapping); |
@@ -1590,7 +1603,9 @@ extern void emergency_sync(void); | |||
1590 | extern void emergency_remount(void); | 1603 | extern void emergency_remount(void); |
1591 | extern int do_remount_sb(struct super_block *sb, int flags, | 1604 | extern int do_remount_sb(struct super_block *sb, int flags, |
1592 | void *data, int force); | 1605 | void *data, int force); |
1606 | #ifdef CONFIG_BLOCK | ||
1593 | extern sector_t bmap(struct inode *, sector_t); | 1607 | extern sector_t bmap(struct inode *, sector_t); |
1608 | #endif | ||
1594 | extern int notify_change(struct dentry *, struct iattr *); | 1609 | extern int notify_change(struct dentry *, struct iattr *); |
1595 | extern int permission(struct inode *, int, struct nameidata *); | 1610 | extern int permission(struct inode *, int, struct nameidata *); |
1596 | extern int generic_permission(struct inode *, int, | 1611 | extern int generic_permission(struct inode *, int, |
@@ -1673,9 +1688,11 @@ static inline void insert_inode_hash(struct inode *inode) { | |||
1673 | extern struct file * get_empty_filp(void); | 1688 | extern struct file * get_empty_filp(void); |
1674 | extern void file_move(struct file *f, struct list_head *list); | 1689 | extern void file_move(struct file *f, struct list_head *list); |
1675 | extern void file_kill(struct file *f); | 1690 | extern void file_kill(struct file *f); |
1691 | #ifdef CONFIG_BLOCK | ||
1676 | struct bio; | 1692 | struct bio; |
1677 | extern void submit_bio(int, struct bio *); | 1693 | extern void submit_bio(int, struct bio *); |
1678 | extern int bdev_read_only(struct block_device *); | 1694 | extern int bdev_read_only(struct block_device *); |
1695 | #endif | ||
1679 | extern int set_blocksize(struct block_device *, int); | 1696 | extern int set_blocksize(struct block_device *, int); |
1680 | extern int sb_set_blocksize(struct super_block *, int); | 1697 | extern int sb_set_blocksize(struct super_block *, int); |
1681 | extern int sb_min_blocksize(struct super_block *, int); | 1698 | extern int sb_min_blocksize(struct super_block *, int); |
@@ -1756,6 +1773,7 @@ static inline void do_generic_file_read(struct file * filp, loff_t *ppos, | |||
1756 | actor); | 1773 | actor); |
1757 | } | 1774 | } |
1758 | 1775 | ||
1776 | #ifdef CONFIG_BLOCK | ||
1759 | ssize_t __blockdev_direct_IO(int rw, struct kiocb *iocb, struct inode *inode, | 1777 | ssize_t __blockdev_direct_IO(int rw, struct kiocb *iocb, struct inode *inode, |
1760 | struct block_device *bdev, const struct iovec *iov, loff_t offset, | 1778 | struct block_device *bdev, const struct iovec *iov, loff_t offset, |
1761 | unsigned long nr_segs, get_block_t get_block, dio_iodone_t end_io, | 1779 | unsigned long nr_segs, get_block_t get_block, dio_iodone_t end_io, |
@@ -1793,6 +1811,7 @@ static inline ssize_t blockdev_direct_IO_own_locking(int rw, struct kiocb *iocb, | |||
1793 | return __blockdev_direct_IO(rw, iocb, inode, bdev, iov, offset, | 1811 | return __blockdev_direct_IO(rw, iocb, inode, bdev, iov, offset, |
1794 | nr_segs, get_block, end_io, DIO_OWN_LOCKING); | 1812 | nr_segs, get_block, end_io, DIO_OWN_LOCKING); |
1795 | } | 1813 | } |
1814 | #endif | ||
1796 | 1815 | ||
1797 | extern const struct file_operations generic_ro_fops; | 1816 | extern const struct file_operations generic_ro_fops; |
1798 | 1817 | ||
diff --git a/include/linux/genhd.h b/include/linux/genhd.h index e4af57e87c17..41f276fdd185 100644 --- a/include/linux/genhd.h +++ b/include/linux/genhd.h | |||
@@ -11,6 +11,8 @@ | |||
11 | 11 | ||
12 | #include <linux/types.h> | 12 | #include <linux/types.h> |
13 | 13 | ||
14 | #ifdef CONFIG_BLOCK | ||
15 | |||
14 | enum { | 16 | enum { |
15 | /* These three have identical behaviour; use the second one if DOS FDISK gets | 17 | /* These three have identical behaviour; use the second one if DOS FDISK gets |
16 | confused about extended/logical partitions starting past cylinder 1023. */ | 18 | confused about extended/logical partitions starting past cylinder 1023. */ |
@@ -420,3 +422,5 @@ static inline struct block_device *bdget_disk(struct gendisk *disk, int index) | |||
420 | #endif | 422 | #endif |
421 | 423 | ||
422 | #endif | 424 | #endif |
425 | |||
426 | #endif | ||
diff --git a/include/linux/mpage.h b/include/linux/mpage.h index 517c098fde20..cc5fb75af78a 100644 --- a/include/linux/mpage.h +++ b/include/linux/mpage.h | |||
@@ -9,6 +9,7 @@ | |||
9 | * (And no, it doesn't do the #ifdef __MPAGE_H thing, and it doesn't do | 9 | * (And no, it doesn't do the #ifdef __MPAGE_H thing, and it doesn't do |
10 | * nested includes. Get it right in the .c file). | 10 | * nested includes. Get it right in the .c file). |
11 | */ | 11 | */ |
12 | #ifdef CONFIG_BLOCK | ||
12 | 13 | ||
13 | struct writeback_control; | 14 | struct writeback_control; |
14 | typedef int (writepage_t)(struct page *page, struct writeback_control *wbc); | 15 | typedef int (writepage_t)(struct page *page, struct writeback_control *wbc); |
@@ -20,3 +21,5 @@ int mpage_writepages(struct address_space *mapping, | |||
20 | struct writeback_control *wbc, get_block_t get_block); | 21 | struct writeback_control *wbc, get_block_t get_block); |
21 | int mpage_writepage(struct page *page, get_block_t *get_block, | 22 | int mpage_writepage(struct page *page, get_block_t *get_block, |
22 | struct writeback_control *wbc); | 23 | struct writeback_control *wbc); |
24 | |||
25 | #endif | ||
diff --git a/include/linux/raid/md.h b/include/linux/raid/md.h index eb3e547c8fee..c588709acbbc 100644 --- a/include/linux/raid/md.h +++ b/include/linux/raid/md.h | |||
@@ -53,6 +53,8 @@ | |||
53 | #include <linux/raid/md_u.h> | 53 | #include <linux/raid/md_u.h> |
54 | #include <linux/raid/md_k.h> | 54 | #include <linux/raid/md_k.h> |
55 | 55 | ||
56 | #ifdef CONFIG_MD | ||
57 | |||
56 | /* | 58 | /* |
57 | * Different major versions are not compatible. | 59 | * Different major versions are not compatible. |
58 | * Different minor versions are only downward compatible. | 60 | * Different minor versions are only downward compatible. |
@@ -95,5 +97,6 @@ extern void md_new_event(mddev_t *mddev); | |||
95 | 97 | ||
96 | extern void md_update_sb(mddev_t * mddev); | 98 | extern void md_update_sb(mddev_t * mddev); |
97 | 99 | ||
100 | #endif /* CONFIG_MD */ | ||
98 | #endif | 101 | #endif |
99 | 102 | ||
diff --git a/include/linux/raid/md_k.h b/include/linux/raid/md_k.h index d28890295852..920b94fe31fa 100644 --- a/include/linux/raid/md_k.h +++ b/include/linux/raid/md_k.h | |||
@@ -18,6 +18,8 @@ | |||
18 | /* and dm-bio-list.h is not under include/linux because.... ??? */ | 18 | /* and dm-bio-list.h is not under include/linux because.... ??? */ |
19 | #include "../../../drivers/md/dm-bio-list.h" | 19 | #include "../../../drivers/md/dm-bio-list.h" |
20 | 20 | ||
21 | #ifdef CONFIG_BLOCK | ||
22 | |||
21 | #define LEVEL_MULTIPATH (-4) | 23 | #define LEVEL_MULTIPATH (-4) |
22 | #define LEVEL_LINEAR (-1) | 24 | #define LEVEL_LINEAR (-1) |
23 | #define LEVEL_FAULTY (-5) | 25 | #define LEVEL_FAULTY (-5) |
@@ -362,5 +364,6 @@ static inline void safe_put_page(struct page *p) | |||
362 | if (p) put_page(p); | 364 | if (p) put_page(p); |
363 | } | 365 | } |
364 | 366 | ||
367 | #endif /* CONFIG_BLOCK */ | ||
365 | #endif | 368 | #endif |
366 | 369 | ||
diff --git a/include/scsi/scsi_tcq.h b/include/scsi/scsi_tcq.h index bbf66219b769..c247a28259bc 100644 --- a/include/scsi/scsi_tcq.h +++ b/include/scsi/scsi_tcq.h | |||
@@ -6,7 +6,6 @@ | |||
6 | #include <scsi/scsi_device.h> | 6 | #include <scsi/scsi_device.h> |
7 | #include <scsi/scsi_host.h> | 7 | #include <scsi/scsi_host.h> |
8 | 8 | ||
9 | |||
10 | #define MSG_SIMPLE_TAG 0x20 | 9 | #define MSG_SIMPLE_TAG 0x20 |
11 | #define MSG_HEAD_TAG 0x21 | 10 | #define MSG_HEAD_TAG 0x21 |
12 | #define MSG_ORDERED_TAG 0x22 | 11 | #define MSG_ORDERED_TAG 0x22 |
@@ -14,6 +13,7 @@ | |||
14 | #define SCSI_NO_TAG (-1) /* identify no tag in use */ | 13 | #define SCSI_NO_TAG (-1) /* identify no tag in use */ |
15 | 14 | ||
16 | 15 | ||
16 | #ifdef CONFIG_BLOCK | ||
17 | 17 | ||
18 | /** | 18 | /** |
19 | * scsi_get_tag_type - get the type of tag the device supports | 19 | * scsi_get_tag_type - get the type of tag the device supports |
@@ -144,4 +144,5 @@ static inline int scsi_init_shared_tag_map(struct Scsi_Host *shost, int depth) | |||
144 | return shost->bqt ? 0 : -ENOMEM; | 144 | return shost->bqt ? 0 : -ENOMEM; |
145 | } | 145 | } |
146 | 146 | ||
147 | #endif /* CONFIG_BLOCK */ | ||
147 | #endif /* _SCSI_SCSI_TCQ_H */ | 148 | #endif /* _SCSI_SCSI_TCQ_H */ |