EXPORT_SYMBOL標籤內定義的函數或者符號對全部核心代碼公開,不用修改核心代碼就可以在您的核心模組中直接調用,即使用EXPORT_SYMBOL可以將一個函數以符號的方式匯出給其他模組使用。您還可以手工修改核心原始碼來匯出另外的函數,用於重新編譯並載入新核心後的測試。
Linux symbol export method:
[1] If we want export the symbol in a module, just use the EXPORT_SYMBOL(xxxx) in the C or H file.
And compile the module by adding the compile flag -DEXPORT_SYMTAB.
Then we can use the xxxx in the other module.
[2] If we want export some symbol in Kernel that is not in a module such as xxxx in the /arch/ppc/fec.c.
Firstly, define the xxxx in the fec.c;
Secondly, make a new file which contain the "extern" define the xxxx(for example, extern int xxxx);
Lastly, in the ppc_ksyms.c we includes the new file, and add the EXPORT_SYMBOL(xxxx).
Then we can use the xxxx.
使用時注意事項:
在使用EXPORT_SYMBOL 的.c檔案中 需要 #include <linux/module.h> 檔案。
// 先寫函數
func_a ()
{
}
//再使用EXPORT_SYMBOL
EXPORT_SYMBOL(func_a);
我的一個使用執行個體:
w90p710網卡驅動裡,有自動探測網線有沒有插上的這個函數介面。由於應用程式的需要,我們需要返回網線是否插上這個狀態。剛開始想到的辦法是在網卡驅動裡加ioctl()來擷取,可是網路裝置的驅動並不和字元裝置的驅動相同。在sockfd = socket()擷取通訊端後再ioctl(sockfd, cmd, &slf)時,始終報invalid argument這個錯誤。
(Link: http://www.mcuos.com/redirect.php?tid=1650&goto=lastpost#lastpost )
一招不行,再來一招:想起
EXPORT_SYMBOL能夠把符號匯出到模組可見,或整個核心可見。這樣我何不在eth0的驅動裡定義一個全域變數來儲存網卡是否插上這個狀態,然後再使用他匯出到整個核心空間可見,然後再這別的驅動裡來返回這個值。試了一下,果然成功了。
1,在linux-2.4.x/driver/net/w90p710_mac.c中定義全域變數:
// all macPlugStatus is add by guowenxue 2008.8.1
int macPlugStatus;
然後在ResetPhyChip()函數裡: -----系統啟動,初始化網卡時,網線沒插上
當printk("ResetPhyChip failed 1/n")時,設定:macPlugStatus = 0;
當TRACE_ERROR("OK/n")時, 設定: macPlugStatus = 1;
另外需要在: w710_autodetect()函數裡: ----------系統啟動後,網線沒插上;
在printk("MAC Line-off.../n")時,設定 macPlugStatus = 0;
在printk("MAC Line-on.../n")時,設定 macPlugStatus = 1;
2,在linux-2.4.x/driver/net/w90p710_mac.h這個標頭檔裡匯出這個全域變數:
// add by guowenxue 2008.8.1
extern int macPlugStatus;
3, 另外建立了一個字元裝置,專門用來擷取這個狀態(夠奢侈的),馬來西亞他們要求這樣做的。代碼如下:
[code]
#include "l200.h"
#include "../../net/w90p710_mac.h" //包含上面的標頭檔
EXPORT_SYMBOL(macPlugStatus); //匯出macPlugStatus這個全域變數,因為他在整個核心空間是可見的。
static int mac_open(struct inode *inode, struct file *file)
{
return 0;
}
static int mac_release(struct inode *inode, struct file *file)
{
return 0;
}
static int mac_ioctl(struct inode *inode, struct file *file, unsigned int cmd, unsigned long arg)
{
switch(cmd)
{
case GETPLUGSTATUS: // whether network wire is plugin
return macPlugStatus; // 整個driver就是返回這個值而已~
default:
return -1;
}
return 0;
}
static struct file_operations mac_fops=
{
.ioctl = mac_ioctl,
.open = mac_open,
.release = mac_release,
};
int l200_mac_init(void)
{
if((register_chrdev(MAC_MAJOR, MAC_NAME, &mac_fops)) < 0)
{
printk("Regist L200 MAC device failure.../n");
return -ENODEV;
}
printk("Regist L200 MAC device success.../n");
return 0;
}
void l200_mac_cleanup(void)
{
unregister_chrdev(MAC_MAJOR, MAC_NAME);
printk("L200 MAC unregist ok!/n");
}
MODULE_LICENSE("GPL");
[/code]
再在linux-2.4.x/driver/char/mem.c中添加l200_mac_init(),修改Config.in,重新設定核心,編譯運行就OK了~
PS:儘管這不是一個很好的方法,但他畢竟自己想到的一個辦法,可算實現了功能。在應用程式上也只需開啟裝置,ioctl()就OK了。看來搞嵌入式還是得多學點東西~
轉貼於 http://hi.baidu.com/kkernel/blog/item/ad01fd08e1ef3236e8248869.html