hpsa.c (30bda7848a23980c7eecda4a1148e093d3e98de0) | hpsa.c (654cc541a949e971e7a500710b7dacc7031ee9cc) |
---|---|
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 --- 45 unchanged lines hidden (view full) --- 54#include <asm/div64.h> 55#include "hpsa_cmd.h" 56#include "hpsa.h" 57 58/* 59 * HPSA_DRIVER_VERSION must be 3 byte values (0-255) separated by '.' 60 * with an optional trailing '-' followed by a byte value (0-255). 61 */ | 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 --- 45 unchanged lines hidden (view full) --- 54#include <asm/div64.h> 55#include "hpsa_cmd.h" 56#include "hpsa.h" 57 58/* 59 * HPSA_DRIVER_VERSION must be 3 byte values (0-255) separated by '.' 60 * with an optional trailing '-' followed by a byte value (0-255). 61 */ |
62#define HPSA_DRIVER_VERSION "3.4.20-170" | 62#define HPSA_DRIVER_VERSION "3.4.20-200" |
63#define DRIVER_NAME "HP HPSA Driver (v " HPSA_DRIVER_VERSION ")" 64#define HPSA "hpsa" 65 66/* How long to wait for CISS doorbell communication */ 67#define CLEAR_EVENT_WAIT_INTERVAL 20 /* ms for each msleep() call */ 68#define MODE_CHANGE_WAIT_INTERVAL 10 /* ms for each msleep() call */ 69#define MAX_CLEAR_EVENT_WAIT 30000 /* times 20 ms = 600 s */ 70#define MAX_MODE_CHANGE_WAIT 2000 /* times 10 ms = 20 s */ --- 9930 unchanged lines hidden --- | 63#define DRIVER_NAME "HP HPSA Driver (v " HPSA_DRIVER_VERSION ")" 64#define HPSA "hpsa" 65 66/* How long to wait for CISS doorbell communication */ 67#define CLEAR_EVENT_WAIT_INTERVAL 20 /* ms for each msleep() call */ 68#define MODE_CHANGE_WAIT_INTERVAL 10 /* ms for each msleep() call */ 69#define MAX_CLEAR_EVENT_WAIT 30000 /* times 20 ms = 600 s */ 70#define MAX_MODE_CHANGE_WAIT 2000 /* times 10 ms = 20 s */ --- 9930 unchanged lines hidden --- |