【Linux裝置驅動程式(第三版)】—-擷取目前時間

來源:互聯網
上載者:User
文章目錄
  • jit.c
  • Makefile
  • 裝載驅動
  • 測試
  • 輸出結果:
  • 卸載
 【Linux裝置驅動程式(第三版)】----擷取目前時間jit.c

 

#include <linux/module.h>#include <linux/moduleparam.h>#include <linux/init.h>#include <linux/time.h>#include <linux/timer.h>#include <linux/proc_fs.h>#include <linux/spinlock.h>#include <linux/interrupt.h>#include <asm/hardirq.h>#include <linux/sched.h>//jiffies#include <linux/kernel.h>#include <linux/types.h>//u64#include <linux/fs.h>//file_operations, file#include <linux/completion.h>#include <asm/uaccess.h>//copy_to_user & copy_from_userint jit_currentime(char *buf, char **start, off_t offset, int len, int *eof, void *data){struct timeval tv1;struct timespec tv2;unsigned long j1;u64 j2;j1 = jiffies;j2 = get_jiffies_64();do_gettimeofday(&tv1);tv2 = current_kernel_time();len = 0;len += sprintf(buf,"0x%08lx 0x%016Lx %10i.%06i\n"       "%40i.%09i\n",       j1, j2,       (int) tv1.tv_sec, (int) tv1.tv_usec,       (int) tv2.tv_sec, (int) tv2.tv_nsec);*start = buf;return len;}int __init jit_init(void){printk(KERN_DEBUG "jit_init......");create_proc_read_entry("jit_currentime", 0, NULL, jit_currentime, NULL);return 0;}void __exit jit_exit(void){remove_proc_entry("jit_currentime", NULL);}MODULE_LICENSE("Dual BSD/GPL");module_init(jit_init);module_exit(jit_exit);
Makefile
obj-m:= jit.omodules-objs:= jit.oKDIR:= /usr/src/linux-headers-2.6.31-14-generic/PWD:= $(shell pwd)default: make -C $(KDIR) M=$(PWD) modulesclean: rm -rf *.ko *.mod.c *.mod.o *.o *.markers *.symvers *.order
裝載驅動
insmod jit.ko
測試
cat /proc/jit_currentime
輸出結果:
0x000d52fd 0x00000001000d52fd 1310097626.455468                              1310097626.4545165480x000d52fd 0x00000001000d52fd 1310097626.455470                              1310097626.4545165480x000d52fd 0x00000001000d52fd 1310097626.455472                              1310097626.4545165480x000d52fd 0x00000001000d52fd 1310097626.455474                              1310097626.4545165480x000d52fd 0x00000001000d52fd 1310097626.455476                              1310097626.4545165480x000d52fd 0x00000001000d52fd 1310097626.455478                              1310097626.4545165480x000d52fd 0x00000001000d52fd 1310097626.455481                              1310097626.4545165480x000d52fd 0x00000001000d52fd 1310097626.455483                              1310097626.4545165480x000d52fd 0x00000001000d52fd 1310097626.455485                              1310097626.4545165480x000d52fd 0x00000001000d52fd 1310097626.455487                              1310097626.4545165480x000d52fd 0x00000001000d52fd 1310097626.455489                              1310097626.4545165480x000d52fd 0x00000001000d52fd 1310097626.455491                              1310097626.4545165480x000d52fd 0x00000001000d52fd 1310097626.455493                              1310097626.4545165480x000d52fd 0x00000001000d52fd 1310097626.455495                              1310097626.4545165480x000d52fd 0x00000001000d52fd 1310097626.455497                              1310097626.4545165480x000d52fd 0x00000001000d52fd 1310097626.455499                              1310097626.4545165480x000d52fd 0x00000001000d52fd 1310097626.455502                              1310097626.4545165480x000d52fd 0x00000001000d52fd 1310097626.455504                              1310097626.454516548
卸載
rmmod jit

 

 

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.