[DRBD-cvs] svn commit by lars - r2373 - branches/drbd-0.7/drbd - no
more devfs. thanks to lmb and the kernel.org 2.6.18
drbd-cvs at lists.linbit.com
drbd-cvs at lists.linbit.com
Tue Aug 15 14:24:34 CEST 2006
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
Author: lars
Date: 2006-08-15 14:24:33 +0200 (Tue, 15 Aug 2006)
New Revision: 2373
Modified:
branches/drbd-0.7/drbd/drbd_int.h
branches/drbd-0.7/drbd/drbd_main.c
Log:
no more devfs. thanks to lmb and the kernel.org 2.6.18
Modified: branches/drbd-0.7/drbd/drbd_int.h
===================================================================
--- branches/drbd-0.7/drbd/drbd_int.h 2006-08-14 17:05:58 UTC (rev 2372)
+++ branches/drbd-0.7/drbd/drbd_int.h 2006-08-15 12:24:33 UTC (rev 2373)
@@ -73,8 +73,10 @@
extern int major_nr;
extern int use_nbd_major;
+#if LINUX_VERSION_CODE < KERNEL_VERSION(2,6,18)
// use_nbd_major ? "nbd" : "drbd";
extern char* drbd_devfs_name;
+#endif
#include <linux/major.h>
#ifdef DRBD_MAJOR
Modified: branches/drbd-0.7/drbd/drbd_main.c
===================================================================
--- branches/drbd-0.7/drbd/drbd_main.c 2006-08-14 17:05:58 UTC (rev 2372)
+++ branches/drbd-0.7/drbd/drbd_main.c 2006-08-15 12:24:33 UTC (rev 2373)
@@ -49,7 +49,9 @@
#include <linux/mm_inline.h>
#endif
#include <linux/slab.h>
+#if LINUX_VERSION_CODE < KERNEL_VERSION(2,6,18)
#include <linux/devfs_fs_kernel.h>
+#endif
#define __KERNEL_SYSCALLS__
#include <linux/unistd.h>
@@ -144,10 +146,11 @@
#endif
int disable_bd_claim = 0;
+#if LINUX_VERSION_CODE < KERNEL_VERSION(2,6,18)
// devfs name
char* drbd_devfs_name = "drbd";
+#endif
-
// global panic flag
volatile int drbd_did_panic = 0;
@@ -1695,8 +1698,10 @@
#if LINUX_VERSION_CODE < KERNEL_VERSION(2,5,0)
devfs_unregister(devfs_handle);
#else
+#if LINUX_VERSION_CODE < KERNEL_VERSION(2,6,18)
devfs_remove(drbd_devfs_name);
#endif
+#endif
if (unregister_blkdev(MAJOR_NR, DEVICE_NAME) != 0)
printk(KERN_ERR DEVICE_NAME": unregister of device failed\n");
@@ -1769,7 +1774,9 @@
return err;
}
+#if LINUX_VERSION_CODE < KERNEL_VERSION(2,6,18)
drbd_devfs_name = (major_nr == NBD_MAJOR) ? "nbd" : "drbd";
+#endif
/*
* allocate all necessary structs
@@ -1791,7 +1798,9 @@
if (unlikely(!drbd_blocksizes)) goto Enomem;
#else
+#if LINUX_VERSION_CODE < KERNEL_VERSION(2,6,18)
devfs_mk_dir(drbd_devfs_name);
+#endif
for (i = 0; i < minor_count; i++) {
drbd_dev *mdev = drbd_conf + i;
@@ -1814,7 +1823,9 @@
disk->first_minor = i;
disk->fops = &drbd_ops;
sprintf(disk->disk_name, DEVICE_NAME "%d", i);
+#if LINUX_VERSION_CODE < KERNEL_VERSION(2,6,18)
sprintf(disk->devfs_name, "%s/%d", drbd_devfs_name, i);
+#endif
disk->private_data = mdev;
add_disk(disk);
More information about the drbd-cvs
mailing list