public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
* sysfs for IPMI, for new mm kernels
@ 2005-04-01  3:02 Corey Minyard
  2005-04-01  3:43 ` Dmitry Torokhov
  0 siblings, 1 reply; 3+ messages in thread
From: Corey Minyard @ 2005-04-01  3:02 UTC (permalink / raw)
  To: Andrew Morton; +Cc: lkml, Greg KH

[-- Attachment #1: Type: text/plain, Size: 227 bytes --]

Andrew,

There are some major changes in the current mm kernels to the class 
interface that require changes to the IPMI driver.  Thus the previously 
posted sysfs changes for IPMI are now incorrect.  Here's a new one.

-Corey

[-- Attachment #2: ipmi-sysfs.diff --]
[-- Type: text/x-patch, Size: 2078 bytes --]

Add support for sysfs to the IPMI device interface.

Signed-off-by: Corey Minyard <minyard@acm.org>

Index: linux-2.6.12-rc1/drivers/char/ipmi/ipmi_devintf.c
===================================================================
--- linux-2.6.12-rc1.orig/drivers/char/ipmi/ipmi_devintf.c
+++ linux-2.6.12-rc1/drivers/char/ipmi/ipmi_devintf.c
@@ -44,6 +44,7 @@
 #include <linux/ipmi.h>
 #include <asm/semaphore.h>
 #include <linux/init.h>
+#include <linux/device.h>
 
 #define IPMI_DEVINTF_VERSION "v33"
 
@@ -519,15 +520,24 @@
 		 " interface.  Other values will set the major device number"
 		 " to that value.");
 
+static struct class *ipmi_class;
+
 static void ipmi_new_smi(int if_num)
 {
+	char                  name[10];
+	dev_t                 dev = MKDEV(ipmi_major, if_num);
+
 	devfs_mk_cdev(MKDEV(ipmi_major, if_num),
 		      S_IFCHR | S_IRUSR | S_IWUSR,
 		      "ipmidev/%d", if_num);
+
+	snprintf(name, sizeof(name), "ipmi%d", if_num);
+	class_device_create(ipmi_class, dev, NULL, name);
 }
 
 static void ipmi_smi_gone(int if_num)
 {
+	class_device_destroy(ipmi_class, MKDEV(ipmi_major, if_num));
 	devfs_remove("ipmidev/%d", if_num);
 }
 
@@ -548,8 +558,15 @@
 	printk(KERN_INFO "ipmi device interface version "
 	       IPMI_DEVINTF_VERSION "\n");
 
+	ipmi_class = class_create(THIS_MODULE, "ipmi");
+	if (IS_ERR(ipmi_class)) {
+		printk(KERN_ERR "ipmi: can't register device class\n");
+		return PTR_ERR(ipmi_class);
+	}
+
 	rv = register_chrdev(ipmi_major, DEVICE_NAME, &ipmi_fops);
 	if (rv < 0) {
+		class_destroy(ipmi_class);
 		printk(KERN_ERR "ipmi: can't get major %d\n", ipmi_major);
 		return rv;
 	}
@@ -563,6 +580,7 @@
 	rv = ipmi_smi_watcher_register(&smi_watcher);
 	if (rv) {
 		unregister_chrdev(ipmi_major, DEVICE_NAME);
+		class_destroy(ipmi_class);
 		printk(KERN_WARNING "ipmi: can't register smi watcher\n");
 		return rv;
 	}
@@ -573,6 +591,7 @@
 
 static __exit void cleanup_ipmi(void)
 {
+	class_destroy(ipmi_class);
 	ipmi_smi_watcher_unregister(&smi_watcher);
 	devfs_remove(DEVICE_NAME);
 	unregister_chrdev(ipmi_major, DEVICE_NAME);

^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: sysfs for IPMI, for new mm kernels
  2005-04-01  3:02 sysfs for IPMI, for new mm kernels Corey Minyard
@ 2005-04-01  3:43 ` Dmitry Torokhov
  2005-04-01  4:23   ` Corey Minyard
  0 siblings, 1 reply; 3+ messages in thread
From: Dmitry Torokhov @ 2005-04-01  3:43 UTC (permalink / raw)
  To: Corey Minyard; +Cc: Andrew Morton, lkml, Greg KH

On Thursday 31 March 2005 22:02, Corey Minyard wrote:
> +       snprintf(name, sizeof(name), "ipmi%d", if_num);
> +       class_device_create(ipmi_class, dev, NULL, name);
> 

class_device_create(ipmi_class, dev, NULL, "ipmi%d", if_num) ?

-- 
Dmitry

^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: sysfs for IPMI, for new mm kernels
  2005-04-01  3:43 ` Dmitry Torokhov
@ 2005-04-01  4:23   ` Corey Minyard
  0 siblings, 0 replies; 3+ messages in thread
From: Corey Minyard @ 2005-04-01  4:23 UTC (permalink / raw)
  To: Dmitry Torokhov; +Cc: Andrew Morton, lkml, Greg KH

[-- Attachment #1: Type: text/plain, Size: 336 bytes --]

Dmitry Torokhov wrote:

>On Thursday 31 March 2005 22:02, Corey Minyard wrote:
>  
>
>>+       snprintf(name, sizeof(name), "ipmi%d", if_num);
>>+       class_device_create(ipmi_class, dev, NULL, name);
>>
>>    
>>
>
>class_device_create(ipmi_class, dev, NULL, "ipmi%d", if_num) ?
>
>  
>
Yes, much better.  Let's try again...

-Corey

[-- Attachment #2: ipmi-sysfs.diff --]
[-- Type: text/x-patch, Size: 2040 bytes --]

Add support for sysfs to the IPMI device interface.

Signed-off-by: Corey Minyard <minyard@acm.org>

Index: linux-2.6.12-rc1/drivers/char/ipmi/ipmi_devintf.c
===================================================================
--- linux-2.6.12-rc1.orig/drivers/char/ipmi/ipmi_devintf.c
+++ linux-2.6.12-rc1/drivers/char/ipmi/ipmi_devintf.c
@@ -44,6 +44,7 @@
 #include <linux/ipmi.h>
 #include <asm/semaphore.h>
 #include <linux/init.h>
+#include <linux/device.h>
 
 #define IPMI_DEVINTF_VERSION "v33"
 
@@ -519,15 +520,21 @@
 		 " interface.  Other values will set the major device number"
 		 " to that value.");
 
+static struct class *ipmi_class;
+
 static void ipmi_new_smi(int if_num)
 {
-	devfs_mk_cdev(MKDEV(ipmi_major, if_num),
-		      S_IFCHR | S_IRUSR | S_IWUSR,
+	dev_t dev = MKDEV(ipmi_major, if_num);
+
+	devfs_mk_cdev(dev, S_IFCHR | S_IRUSR | S_IWUSR,
 		      "ipmidev/%d", if_num);
+
+	class_device_create(ipmi_class, dev, NULL, "ipmi%d", if_num);
 }
 
 static void ipmi_smi_gone(int if_num)
 {
+	class_device_destroy(ipmi_class, MKDEV(ipmi_major, if_num));
 	devfs_remove("ipmidev/%d", if_num);
 }
 
@@ -548,8 +555,15 @@
 	printk(KERN_INFO "ipmi device interface version "
 	       IPMI_DEVINTF_VERSION "\n");
 
+	ipmi_class = class_create(THIS_MODULE, "ipmi");
+	if (IS_ERR(ipmi_class)) {
+		printk(KERN_ERR "ipmi: can't register device class\n");
+		return PTR_ERR(ipmi_class);
+	}
+
 	rv = register_chrdev(ipmi_major, DEVICE_NAME, &ipmi_fops);
 	if (rv < 0) {
+		class_destroy(ipmi_class);
 		printk(KERN_ERR "ipmi: can't get major %d\n", ipmi_major);
 		return rv;
 	}
@@ -563,6 +577,7 @@
 	rv = ipmi_smi_watcher_register(&smi_watcher);
 	if (rv) {
 		unregister_chrdev(ipmi_major, DEVICE_NAME);
+		class_destroy(ipmi_class);
 		printk(KERN_WARNING "ipmi: can't register smi watcher\n");
 		return rv;
 	}
@@ -573,6 +588,7 @@
 
 static __exit void cleanup_ipmi(void)
 {
+	class_destroy(ipmi_class);
 	ipmi_smi_watcher_unregister(&smi_watcher);
 	devfs_remove(DEVICE_NAME);
 	unregister_chrdev(ipmi_major, DEVICE_NAME);

^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2005-04-01  4:23 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2005-04-01  3:02 sysfs for IPMI, for new mm kernels Corey Minyard
2005-04-01  3:43 ` Dmitry Torokhov
2005-04-01  4:23   ` Corey Minyard

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox