hpsa.c (ba74fdc411b84064d7abe4b10d0708f6dad03eb2) | hpsa.c (ff54aee466e3ad3f5aad76c629a8bcb88fc9b348) |
---|---|
1/* 2 * Disk Array driver for HP Smart Array SAS controllers 3 * Copyright 2016 Microsemi Corporation 4 * Copyright 2014-2015 PMC-Sierra, Inc. 5 * Copyright 2000,2009-2015 Hewlett-Packard Development Company, L.P. 6 * 7 * This program is free software; you can redistribute it and/or modify 8 * it under the terms of the GNU General Public License as published by --- 46 unchanged lines hidden (view full) --- 55#include <asm/div64.h> 56#include "hpsa_cmd.h" 57#include "hpsa.h" 58 59/* 60 * HPSA_DRIVER_VERSION must be 3 byte values (0-255) separated by '.' 61 * with an optional trailing '-' followed by a byte value (0-255). 62 */ | 1/* 2 * Disk Array driver for HP Smart Array SAS controllers 3 * Copyright 2016 Microsemi Corporation 4 * Copyright 2014-2015 PMC-Sierra, Inc. 5 * Copyright 2000,2009-2015 Hewlett-Packard Development Company, L.P. 6 * 7 * This program is free software; you can redistribute it and/or modify 8 * it under the terms of the GNU General Public License as published by --- 46 unchanged lines hidden (view full) --- 55#include <asm/div64.h> 56#include "hpsa_cmd.h" 57#include "hpsa.h" 58 59/* 60 * HPSA_DRIVER_VERSION must be 3 byte values (0-255) separated by '.' 61 * with an optional trailing '-' followed by a byte value (0-255). 62 */ |
63#define HPSA_DRIVER_VERSION "3.4.14-0" | 63#define HPSA_DRIVER_VERSION "3.4.16-0" |
64#define DRIVER_NAME "HP HPSA Driver (v " HPSA_DRIVER_VERSION ")" 65#define HPSA "hpsa" 66 67/* How long to wait for CISS doorbell communication */ 68#define CLEAR_EVENT_WAIT_INTERVAL 20 /* ms for each msleep() call */ 69#define MODE_CHANGE_WAIT_INTERVAL 10 /* ms for each msleep() call */ 70#define MAX_CLEAR_EVENT_WAIT 30000 /* times 20 ms = 600 s */ 71#define MAX_MODE_CHANGE_WAIT 2000 /* times 10 ms = 20 s */ --- 9811 unchanged lines hidden --- | 64#define DRIVER_NAME "HP HPSA Driver (v " HPSA_DRIVER_VERSION ")" 65#define HPSA "hpsa" 66 67/* How long to wait for CISS doorbell communication */ 68#define CLEAR_EVENT_WAIT_INTERVAL 20 /* ms for each msleep() call */ 69#define MODE_CHANGE_WAIT_INTERVAL 10 /* ms for each msleep() call */ 70#define MAX_CLEAR_EVENT_WAIT 30000 /* times 20 ms = 600 s */ 71#define MAX_MODE_CHANGE_WAIT 2000 /* times 10 ms = 20 s */ --- 9811 unchanged lines hidden --- |