Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
fork

Configure Feed

Select the types of activity you want to include in your feed.

at v2.6.17-rc2 32 lines 716 B view raw
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#ifdef CONFIG_MODULES 9 10#include <linux/sched.h> 11#include <linux/types.h> 12#include <linux/string.h> 13#include <linux/kernel.h> 14 15#include "fcp_impl.h" 16 17EXPORT_SYMBOL(fcp_init); 18EXPORT_SYMBOL(fcp_release); 19EXPORT_SYMBOL(fcp_queue_empty); 20EXPORT_SYMBOL(fcp_receive_solicited); 21EXPORT_SYMBOL(fc_channels); 22EXPORT_SYMBOL(fcp_state_change); 23EXPORT_SYMBOL(fc_do_plogi); 24EXPORT_SYMBOL(fc_do_prli); 25 26/* SCSI stuff */ 27EXPORT_SYMBOL(fcp_scsi_queuecommand); 28EXPORT_SYMBOL(fcp_scsi_abort); 29EXPORT_SYMBOL(fcp_scsi_dev_reset); 30EXPORT_SYMBOL(fcp_scsi_host_reset); 31 32#endif /* CONFIG_MODULES */