Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
L
linux
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
linux
Commits
539e2f86
Commit
539e2f86
authored
Oct 11, 2004
by
Richard Russon
Browse files
Options
Browse Files
Download
Plain Diff
Merge flatcap.org:/home/flatcap/backup/bk/ntfs-2.6
into flatcap.org:/home/flatcap/backup/bk/ntfs-2.6-devel
parents
96471b7a
825d5976
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
15 additions
and
5 deletions
+15
-5
Documentation/scsi/ChangeLog.megaraid
Documentation/scsi/ChangeLog.megaraid
+8
-0
drivers/acpi/scan.c
drivers/acpi/scan.c
+2
-0
drivers/scsi/megaraid/megaraid_mbox.c
drivers/scsi/megaraid/megaraid_mbox.c
+3
-3
drivers/scsi/megaraid/megaraid_mbox.h
drivers/scsi/megaraid/megaraid_mbox.h
+2
-2
No files found.
Documentation/scsi/ChangeLog.megaraid
View file @
539e2f86
Release Date : Mon Sep 27 22:15:07 EDT 2004 - Atul Mukker <atulm@lsil.com>
Current Version : 2.20.4.0 (scsi module), 2.20.2.0 (cmm module)
Older Version : 2.20.3.1 (scsi module), 2.20.2.0 (cmm module)
i. Fix data corruption. Because of a typo in the driver, the IO packets
were wrongly shared by the ioctl path. This causes a whole IO command
to be replaced by an incoming ioctl command.
Release Date : Tue Aug 24 09:43:35 EDT 2004 - Atul Mukker <atulm@lsil.com>
Release Date : Tue Aug 24 09:43:35 EDT 2004 - Atul Mukker <atulm@lsil.com>
Current Version : 2.20.3.1 (scsi module), 2.20.2.0 (cmm module)
Current Version : 2.20.3.1 (scsi module), 2.20.2.0 (cmm module)
Older Version : 2.20.3.0 (scsi module), 2.20.2.0 (cmm module)
Older Version : 2.20.3.0 (scsi module), 2.20.2.0 (cmm module)
...
...
drivers/acpi/scan.c
View file @
539e2f86
...
@@ -204,6 +204,8 @@ acpi_bus_extract_wakeup_device_power_package (
...
@@ -204,6 +204,8 @@ acpi_bus_extract_wakeup_device_power_package (
return
AE_BAD_PARAMETER
;
return
AE_BAD_PARAMETER
;
element
=
&
(
package
->
package
.
elements
[
0
]);
element
=
&
(
package
->
package
.
elements
[
0
]);
if
(
!
element
)
return
AE_BAD_PARAMETER
;
if
(
element
->
type
==
ACPI_TYPE_PACKAGE
)
{
if
(
element
->
type
==
ACPI_TYPE_PACKAGE
)
{
if
((
element
->
package
.
count
<
2
)
||
if
((
element
->
package
.
count
<
2
)
||
(
element
->
package
.
elements
[
0
].
type
!=
ACPI_TYPE_LOCAL_REFERENCE
)
||
(
element
->
package
.
elements
[
0
].
type
!=
ACPI_TYPE_LOCAL_REFERENCE
)
||
...
...
drivers/scsi/megaraid/megaraid_mbox.c
View file @
539e2f86
...
@@ -10,7 +10,7 @@
...
@@ -10,7 +10,7 @@
* 2 of the License, or (at your option) any later version.
* 2 of the License, or (at your option) any later version.
*
*
* FILE : megaraid_mbox.c
* FILE : megaraid_mbox.c
* Version : v2.20.
3.1 (August 24
2004)
* Version : v2.20.
4 (September 27
2004)
*
*
* Authors:
* Authors:
* Atul Mukker <Atul.Mukker@lsil.com>
* Atul Mukker <Atul.Mukker@lsil.com>
...
@@ -197,7 +197,7 @@ MODULE_PARM_DESC(debug_level, "Debug level for driver (default=0)");
...
@@ -197,7 +197,7 @@ MODULE_PARM_DESC(debug_level, "Debug level for driver (default=0)");
* ### global data ###
* ### global data ###
*/
*/
static
uint8_t
megaraid_mbox_version
[
8
]
=
static
uint8_t
megaraid_mbox_version
[
8
]
=
{
0x02
,
0x20
,
0x0
2
,
0x00
,
7
,
22
,
20
,
4
};
{
0x02
,
0x20
,
0x0
4
,
0x00
,
9
,
27
,
20
,
4
};
/*
/*
...
@@ -3562,7 +3562,7 @@ megaraid_cmm_register(adapter_t *adapter)
...
@@ -3562,7 +3562,7 @@ megaraid_cmm_register(adapter_t *adapter)
for
(
i
=
0
;
i
<
MBOX_MAX_USER_CMDS
;
i
++
)
{
for
(
i
=
0
;
i
<
MBOX_MAX_USER_CMDS
;
i
++
)
{
scb
=
adapter
->
uscb_list
+
i
;
scb
=
adapter
->
uscb_list
+
i
;
ccb
=
raid_dev
->
ccb_list
+
i
;
ccb
=
raid_dev
->
u
ccb_list
+
i
;
scb
->
ccb
=
(
caddr_t
)
ccb
;
scb
->
ccb
=
(
caddr_t
)
ccb
;
ccb
->
mbox64
=
raid_dev
->
umbox64
+
i
;
ccb
->
mbox64
=
raid_dev
->
umbox64
+
i
;
...
...
drivers/scsi/megaraid/megaraid_mbox.h
View file @
539e2f86
...
@@ -21,8 +21,8 @@
...
@@ -21,8 +21,8 @@
#include "megaraid_ioctl.h"
#include "megaraid_ioctl.h"
#define MEGARAID_VERSION "2.20.
3.1
"
#define MEGARAID_VERSION "2.20.
4.0
"
#define MEGARAID_EXT_VERSION "(Release Date:
Tue Aug 24 09:43:35
EDT 2004)"
#define MEGARAID_EXT_VERSION "(Release Date:
Mon Sep 27 22:15:07
EDT 2004)"
/*
/*
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment