- 论坛徽章:
- 0
|
本帖最后由 c04n05 于 2011-08-03 12:09 编辑
http://bbs.chinaunix.net/thread-2017377-2-1.html 看的这个帖子,试验了下代码。如下:- #include <linux/kernel.h>
- #include <linux/init.h>
- #include <linux/module.h>
- #include <linux/fs.h>
- #include <linux/blkdev.h>
- #include <linux/genhd.h>
- #include <linux/version.h>
- #define SIMP_BLKDEV_DISKNAME "simp_blkdev"
- #define SIMP_BLKDEV_DEVICEMAJOR COMPAQ_SMART2_MAJOR
- #define SIMP_BLKDEV_BYTES (16*1024*1024)//16MB
- #define SIMP_BLKDEV_MAXPARTITIONS (64)
- MODULE_LICENSE("GPL");
- static struct gendisk *simp_blkdev_disk;
- static struct request_queue *simp_blkdev_queue;
- unsigned char simp_blkdev_data[SIMP_BLKDEV_BYTES];
- struct block_device_operations simp_blkdev_fops = {
- .owner = THIS_MODULE,
- };
- static int simp_blkdev_make_request(struct request_queue *q, struct bio *bio)
- {
- struct bio_vec *bvec;
- int i;
- void *dsk_mem;
- if ((bio->bi_sector << 9) + bio->bi_size > SIMP_BLKDEV_BYTES)
- {
- printk(KERN_ERR SIMP_BLKDEV_DISKNAME ":bad request:block=%llu, count=%u\n", (unsigned long long)bio->bi_sector, bio->bi_size);
-
- #if LINUX_VERSION_CODE < KERNEL_VERSION(2, 6, 24)
- bio_endio(bio, 0, -EIO);
- #else
- bio_endio(bio, -EIO);
- #endif
- return 0;
- }
- dsk_mem = simp_blkdev_data + (bio->bi_sector << 9);
-
- bio_for_each_segment(bvec, bio, i)
- {
- void *iovec_mem;
-
- switch (bio_rw(bio))
- {
- case READ:
- case READA:
- iovec_mem = kmap(bvec->bv_page) + bvec->bv_offset;
- memcpy(iovec_mem, dsk_mem, bvec->bv_len);
- kunmap(bvec->bv_page);
- break;
-
- case WRITE:
- iovec_mem = kmap(bvec->bv_page) + bvec->bv_offset;
- memcpy(dsk_mem, iovec_mem, bvec->bv_len);
- kunmap(bvec->bv_page);
- default:
- printk(KERN_ERR SIMP_BLKDEV_DISKNAME ":unknown value of bio_rw:%lu\n", bio_rw(bio));
- #if LINUX_VERSION_CODE < KERNEL_VERSION(2, 6, 24)
- bio_endio(bio, 0, -EIO);
- #else
- bio_endio(bio, -EIO);
- #endif
- return 0;
- }
- dsk_mem += bvec->bv_len;
- }
- #if LINUX_VERSION_CODE < KERNEL_VERSION(2, 6, 24)
- bio_endio(bio, 0, -EIO);
- #else
- bio_endio(bio, -EIO);
- #endif
- return 0;
- }
- static int __init simp_blkdev_init(void)
- {
- int ret = 0;
- simp_blkdev_disk = alloc_disk(SIMP_BLKDEV_MAXPARTITIONS);
- if (!simp_blkdev_disk)
- {
- ret = -ENOMEM;
- goto err_alloc_disk;
- }
- simp_blkdev_queue = blk_alloc_queue(GFP_KERNEL);
- if (!simp_blkdev_queue)
- {
- ret = -ENOMEM;
- goto err_init_queue;
- }
- blk_queue_make_request(simp_blkdev_queue, simp_blkdev_make_request);
- strcpy(simp_blkdev_disk->disk_name, SIMP_BLKDEV_DISKNAME);
- simp_blkdev_disk->major = SIMP_BLKDEV_DEVICEMAJOR;
- simp_blkdev_disk->first_minor = 0;
- simp_blkdev_disk->fops = &simp_blkdev_fops;
- simp_blkdev_disk->queue = simp_blkdev_queue;
- set_capacity(simp_blkdev_disk, SIMP_BLKDEV_BYTES>>9/*equals SIMP_BLKDEV_BYTES/512*/);
- add_disk(simp_blkdev_disk);
- return 0;
- err_alloc_disk:
- return ret;
- err_init_queue:
- put_disk(simp_blkdev_disk);
- return ret;
-
- }
- static void __exit simp_blkdev_exit(void)
- {
- put_disk(simp_blkdev_disk);
- blk_cleanup_queue(simp_blkdev_queue);
- del_gendisk(simp_blkdev_disk);
- }
- module_init(simp_blkdev_init);
- module_exit(simp_blkdev_exit);
复制代码 编译完成之后,insmod。发现有/dev/simp_blkdev了
接下来使用fdisk
[root@TM-0166 blockDeviceTest]# fdisk /dev/simp_blkdev
Unable to read /dev/simp_blkdev
[root@TM-0166 blockDeviceTest]# tail -n 30 /var/log/messages
Aug 3 09:20:26 TM-0166 gdm-simple-slave[2497]: DEBUG: Writing wtmp session record to /var/log/wtmp
Aug 3 09:20:26 TM-0166 gdm-simple-slave[2497]: DEBUG: Adding new utmp record
Aug 3 09:20:26 TM-0166 gdm-simple-slave[2497]: DEBUG: GdmSimpleSlave: session started 2649
Aug 3 09:20:29 TM-0166 pulseaudio[2703]: main.c: This program is not intended to be run as root (unless --system is specified).
Aug 3 09:20:29 TM-0166 pulseaudio[2703]: pid.c: Stale PID file, overwriting.
Aug 3 09:20:29 TM-0166 pulseaudio[2703]: alsa-util.c: Device front:0 doesn't support 44100 Hz, changed to 44099 Hz.
Aug 3 09:20:32 TM-0166 gconfd (root-2617): Resolved address "xml:readwrite:/root/.gconf" to a writable configuration source at position 0
Aug 3 09:20:33 TM-0166 pulseaudio[2703]: module-x11-xsmp.c: X11 session manager not running.
Aug 3 09:20:33 TM-0166 pulseaudio[2703]: module.c: Failed to load module "module-x11-xsmp" (argument: "" : initialization failed.
Aug 3 09:20:38 TM-0166 gnome-keyring-daemon[2648]: adding removable location: volume_label_VMware_Tools at /media/VMware Tools
Aug 3 09:20:38 TM-0166 hald: mounted /dev/sr0 on behalf of uid 0
Aug 3 09:21:44 TM-0166 kernel: simp_blkdev:<3>Buffer I/O error on device simp_blkdev, logical block 0
Aug 3 09:21:44 TM-0166 kernel: Buffer I/O error on device simp_blkdev, logical block 0
Aug 3 09:21:44 TM-0166 kernel: Buffer I/O error on device simp_blkdev, logical block 0
Aug 3 09:21:44 TM-0166 kernel: Buffer I/O error on device simp_blkdev, logical block 0
Aug 3 09:21:44 TM-0166 kernel: Buffer I/O error on device simp_blkdev, logical block 0
Aug 3 09:21:44 TM-0166 kernel: Buffer I/O error on device simp_blkdev, logical block 0
Aug 3 09:21:44 TM-0166 kernel: Buffer I/O error on device simp_blkdev, logical block 0
Aug 3 09:21:44 TM-0166 kernel: Dev simp_blkdev: unable to read RDB block 0
Aug 3 09:21:44 TM-0166 kernel: Buffer I/O error on device simp_blkdev, logical block 0
Aug 3 09:21:44 TM-0166 kernel: Buffer I/O error on device simp_blkdev, logical block 0
Aug 3 09:21:44 TM-0166 kernel: unable to read partition table
Aug 3 09:22:23 TM-0166 kernel: Buffer I/O error on device simp_blkdev, logical block 0
Aug 3 09:22:23 TM-0166 kernel: Buffer I/O error on device simp_blkdev, logical block 1
Aug 3 09:22:23 TM-0166 kernel: Buffer I/O error on device simp_blkdev, logical block 2
Aug 3 09:22:23 TM-0166 kernel: Buffer I/O error on device simp_blkdev, logical block 3
Aug 3 09:22:23 TM-0166 kernel: Buffer I/O error on device simp_blkdev, logical block 0
Aug 3 09:22:23 TM-0166 kernel: Buffer I/O error on device simp_blkdev, logical block 4095
Aug 3 09:22:23 TM-0166 kernel: Buffer I/O error on device simp_blkdev, logical block 4095
Aug 3 09:22:23 TM-0166 kernel: Buffer I/O error on device simp_blkdev, logical block 0
内核:[root@TM-0166 blockDeviceTest]# uname -r
2.6.25-14.fc9.i686
gcc version 4.3.0 20080428 (Red Hat 4.3.0- (GCC) |
|