Merge to Fedora kernel-2.6.7-1.441
[linux-2.6.git] / drivers / scsi / scsi_syms.c
1 /*
2  * We should not even be trying to compile this if we are not doing
3  * a module.
4  */
5 #include <linux/config.h>
6 #include <linux/module.h>
7
8 #include <linux/sched.h>
9 #include <linux/timer.h>
10 #include <linux/string.h>
11 #include <linux/slab.h>
12 #include <linux/ioport.h>
13 #include <linux/kernel.h>
14 #include <linux/blkdev.h>
15 #include <linux/fs.h>
16
17 #include <asm/system.h>
18 #include <asm/irq.h>
19 #include <asm/dma.h>
20
21 #include <scsi/scsi_driver.h>
22 #include <scsi/scsi_host.h>
23 #include <scsi/scsi_ioctl.h>
24 #include <scsi/scsicam.h>
25 #include "scsi.h"
26
27 #include "scsi_logging.h"
28
29
30 /*
31  * This source file contains the symbol table used by scsi loadable
32  * modules.
33  */
34 EXPORT_SYMBOL(scsi_register_driver);
35 EXPORT_SYMBOL(scsi_register_interface);
36 EXPORT_SYMBOL(scsi_host_alloc);
37 EXPORT_SYMBOL(scsi_add_host);
38 EXPORT_SYMBOL(scsi_scan_host);
39 EXPORT_SYMBOL(scsi_remove_host);
40 EXPORT_SYMBOL(scsi_host_get);
41 EXPORT_SYMBOL(scsi_host_put);
42 EXPORT_SYMBOL(scsi_host_lookup);
43 EXPORT_SYMBOL(scsi_register);
44 EXPORT_SYMBOL(scsi_unregister);
45 EXPORT_SYMBOL(scsicam_bios_param);
46 EXPORT_SYMBOL(scsi_partsize);
47 EXPORT_SYMBOL(scsi_bios_ptable);
48 EXPORT_SYMBOL(scsi_ioctl);
49 EXPORT_SYMBOL(scsi_print_command);
50 EXPORT_SYMBOL(__scsi_print_command);
51 EXPORT_SYMBOL(scsi_print_sense);
52 EXPORT_SYMBOL(scsi_print_req_sense);
53 EXPORT_SYMBOL(scsi_print_msg);
54 EXPORT_SYMBOL(scsi_print_status);
55 EXPORT_SYMBOL(scsi_sense_key_string);
56 EXPORT_SYMBOL(scsi_extd_sense_format);
57 EXPORT_SYMBOL(scsi_block_when_processing_errors);
58 EXPORT_SYMBOL(scsi_ioctl_send_command);
59 EXPORT_SYMBOL(scsi_set_medium_removal);
60 #if defined(CONFIG_SCSI_LOGGING)        /* { */
61 EXPORT_SYMBOL(scsi_logging_level);
62 #endif
63
64 EXPORT_SYMBOL(scsi_allocate_request);
65 EXPORT_SYMBOL(scsi_release_request);
66 EXPORT_SYMBOL(scsi_wait_req);
67 EXPORT_SYMBOL(scsi_do_req);
68 EXPORT_SYMBOL(scsi_get_command);
69 EXPORT_SYMBOL(scsi_put_command);
70
71 EXPORT_SYMBOL(scsi_report_bus_reset);
72 EXPORT_SYMBOL(scsi_report_device_reset);
73 EXPORT_SYMBOL(scsi_block_requests);
74 EXPORT_SYMBOL(scsi_unblock_requests);
75 EXPORT_SYMBOL(scsi_adjust_queue_depth);
76 EXPORT_SYMBOL(scsi_track_queue_full);
77
78 EXPORT_SYMBOL(scsi_get_host_dev);
79 EXPORT_SYMBOL(scsi_free_host_dev);
80
81 EXPORT_SYMBOL(scsi_sleep);
82
83 EXPORT_SYMBOL(scsi_io_completion);
84
85 EXPORT_SYMBOL(scsi_add_device);
86 EXPORT_SYMBOL(scsi_remove_device);
87 EXPORT_SYMBOL(scsi_device_cancel);
88
89 EXPORT_SYMBOL(__scsi_mode_sense);
90 EXPORT_SYMBOL(scsi_mode_sense);
91
92 /*
93  * This symbol is for the highlevel drivers (e.g. sg) only.
94  */
95 EXPORT_SYMBOL(scsi_reset_provider);
96
97 EXPORT_SYMBOL(scsi_device_types);
98
99 /*
100  * This is for st to find the bounce limit
101  */
102 EXPORT_SYMBOL(scsi_calculate_bounce_limit);
103
104 /*
105  * Externalize timers so that HBAs can safely start/restart commands.
106  */
107 EXPORT_SYMBOL(scsi_add_timer);
108 EXPORT_SYMBOL(scsi_delete_timer);