lists.openwall.net   lists  /  announce  owl-users  owl-dev  john-users  john-dev  passwdqc-users  yescrypt  popa3d-users  /  oss-security  kernel-hardening  musl  sabotage  tlsify  passwords  /  crypt-dev  xvendor  /  Bugtraq  Full-Disclosure  linux-kernel  linux-netdev  linux-ext4  linux-hardening  linux-cve-announce  PHC 
Open Source and information security mailing list archives
 
Hash Suite: Windows password security audit tool. GUI, reports in PDF.
[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Date:	Wed, 20 Sep 2006 19:02:51 -0700
From:	Sumant Patro <sumantp@...l.com>
To:	James.Bottomley@...elEye.com, linux-scsi@...r.kernel.org
Cc:	akpm@...l.org, hch@....de, linux-kernel@...r.kernel.org,
	Neela.Kolli@...l.com, Bo.Yang@...l.com
Subject: [Patch 4/7] megaraid_sas: adds reboot handler

This patch adds handler to get reboot notification and fires flush command from 
the reboot notification handler. 

Signed-off-by: Sumant Patro <Sumant.Patro@...l.com>


diff -uprN linux-2.6orig/drivers/scsi/megaraid/megaraid_sas.c linux-2.6new/drivers/scsi/megaraid/megaraid_sas.c
--- linux-2.6orig/drivers/scsi/megaraid/megaraid_sas.c 2006-09-20 11:04:34.000000000 -0700
+++ linux-2.6new/drivers/scsi/megaraid/megaraid_sas.c 2006-09-20 11:05:52.000000000 -0700
@@ -36,6 +36,8 @@
 #include <linux/fs.h>
 #include <linux/compat.h>
 #include <linux/mutex.h>
+#include <linux/reboot.h>
+#include <linux/notifier.h>
 
 #include <scsi/scsi.h>
 #include <scsi/scsi_cmnd.h>
@@ -2351,6 +2353,36 @@ static void megasas_flush_cache(struct m
 }
 
 /**
+ * megasas_reboot_notify- Flush adapter cache
+ * @this:   Our notifier block
+ * @code:   The event notified
+ * @unused:   Unused
+ */
+static int
+megasas_reboot_notify (struct notifier_block *this, unsigned long code,
+  void *unused)
+{
+	struct megasas_instance *instance;
+	int i;
+
+	for (i = 0; i < megasas_mgmt_info.max_index; i++) {
+		instance = megasas_mgmt_info.instance[i];
+		if (instance) {
+			megasas_flush_cache(instance);
+		}
+	}
+
+	return NOTIFY_DONE;
+}
+
+/**
+ * notifier block to get notification on system halt/reboot/shutdown/power off
+ */
+static struct notifier_block megasas_notifier = {
+	.notifier_call = megasas_reboot_notify
+};
+
+/**
  * megasas_shutdown_controller -	Instructs FW to shutdown the controller
  * @instance:				Adapter soft state
  */
@@ -2903,6 +2935,10 @@ static int __init megasas_init(void)
 	driver_create_file(&megasas_pci_driver.driver,
 			   &driver_attr_release_date);
 
+	if(register_reboot_notifier(&megasas_notifier)) {
+		printk("megasas: reboot notify routine registration failed!!\n");
+	}
+
 	return rval;
 }
 
@@ -2917,6 +2953,7 @@ static void __exit megasas_exit(void)
 
  pci_unregister_driver(&megasas_pci_driver);
  unregister_chrdev(megasas_mgmt_majorno, "megaraid_sas_ioctl");
+ unregister_reboot_notifier(&megasas_notifier);
 }
 
 module_init(megasas_init);


View attachment "reboot_noti-p4.patch" of type "text/x-patch" (1912 bytes)

Powered by blists - more mailing lists

Powered by Openwall GNU/*/Linux Powered by OpenVZ