Whamcloud - gitweb
Mass conversion of all copyright messages to Oracle.
[fs/lustre-release.git] / lustre / obdclass / darwin / darwin-sysctl.c
index b12156a..0820b20 100644 (file)
@@ -1,3 +1,39 @@
+/* -*- mode: c; c-basic-offset: 8; indent-tabs-mode: nil; -*-
+ * vim:expandtab:shiftwidth=8:tabstop=8:
+ *
+ * GPL HEADER START
+ *
+ * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
+ *
+ * This program is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License version 2 only,
+ * as published by the Free Software Foundation.
+ *
+ * This program is distributed in the hope that it will be useful, but
+ * WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+ * General Public License version 2 for more details (a copy is included
+ * in the LICENSE file that accompanied this code).
+ *
+ * You should have received a copy of the GNU General Public License
+ * version 2 along with this program; If not, see
+ * http://www.sun.com/software/products/lustre/docs/GPLv2.pdf
+ *
+ * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
+ * CA 95054 USA or visit www.sun.com if you need additional information or
+ * have any questions.
+ *
+ * GPL HEADER END
+ */
+/*
+ * Copyright (c) 2007, 2010, Oracle and/or its affiliates. All rights reserved.
+ * Use is subject to license terms.
+ */
+/*
+ * This file is part of Lustre, http://www.lustre.org/
+ * Lustre is a trademark of Sun Microsystems, Inc.
+ */
+
 #include <sys/param.h>
 #include <sys/kernel.h>
 #include <sys/malloc.h>
@@ -6,7 +42,7 @@
 #include <sys/proc.h>
 #include <sys/unistd.h>
 #include <mach/mach_types.h>
-#include <linux/lustre_build_version.h>
+#include <lustre/lustre_build_version.h>
 
 #define DEBUG_SUBSYSTEM S_CLASS
                                                                                                                                                                      
@@ -22,7 +58,7 @@ cfs_sysctl_table_header_t *obd_table_header = NULL;
 
 int proc_fail_loc SYSCTL_HANDLER_ARGS;
 int proc_obd_timeout SYSCTL_HANDLER_ARGS;
-extern unsigned int obd_fail_loc;
+extern unsigned long obd_fail_loc;
 extern unsigned int obd_dump_on_timeout;
 extern unsigned int obd_timeout;
 extern unsigned int ldlm_timeout;
@@ -64,7 +100,7 @@ static cfs_sysctl_table_t      parent_table[] = {
        &sysctl__lustre_fail_loc,
        &sysctl__lustre_timeout,
        &sysctl__lustre_dump_on_timeout,
-       &sysctl__lustre_debug_peer_on_timeout,
+        &sysctl__lustre_debug_peer_on_timeout,
        &sysctl__lustre_upcall,
        &sysctl__lustre_memused,
        &sysctl__lustre_filter_sync_on_commit,
@@ -76,7 +112,7 @@ extern cfs_waitq_t obd_race_waitq;
 int proc_fail_loc SYSCTL_HANDLER_ARGS
 { 
        int error = 0; 
-       int old_fail_loc = obd_fail_loc;
+       long old_fail_loc = obd_fail_loc;
        
        error = sysctl_handle_long(oidp, oidp->oid_arg1, oidp->oid_arg2, req); 
        if (!error && req->newptr != USER_ADDR_NULL) {
@@ -151,4 +187,3 @@ void obd_sysctl_clean (void)
        obd_table_header = NULL;
 #endif
 }
-