mirror of
https://github.com/Fishwaldo/Star64_linux.git
synced 2025-06-26 16:41:25 +00:00
[SCSI] fusion - mptctl - Event Log Fix
Use the hard coded value MPTCTL_EVENT_LOG_SIZE to fix bug where in certain cases, the ioc->eventLogSize was initialized. Signed-off-by: Eric Moore <Eric.Moore@lsil.com> Signed-off-by: James Bottomley <James.Bottomley@SteelEye.com>
This commit is contained in:
parent
86a7dcaae9
commit
5b5ef4f617
3 changed files with 4 additions and 5 deletions
|
@ -1501,7 +1501,7 @@ mptctl_eventquery (unsigned long arg)
|
|||
return -ENODEV;
|
||||
}
|
||||
|
||||
karg.eventEntries = ioc->eventLogSize;
|
||||
karg.eventEntries = MPTCTL_EVENT_LOG_SIZE;
|
||||
karg.eventTypes = ioc->eventTypes;
|
||||
|
||||
/* Copy the data from kernel memory to user memory
|
||||
|
@ -1551,7 +1551,6 @@ mptctl_eventenable (unsigned long arg)
|
|||
memset(ioc->events, 0, sz);
|
||||
ioc->alloc_total += sz;
|
||||
|
||||
ioc->eventLogSize = MPTCTL_EVENT_LOG_SIZE;
|
||||
ioc->eventContext = 0;
|
||||
}
|
||||
|
||||
|
@ -1591,7 +1590,7 @@ mptctl_eventreport (unsigned long arg)
|
|||
maxEvents = numBytes/sizeof(MPT_IOCTL_EVENTS);
|
||||
|
||||
|
||||
max = ioc->eventLogSize < maxEvents ? ioc->eventLogSize : maxEvents;
|
||||
max = MPTCTL_EVENT_LOG_SIZE < maxEvents ? MPTCTL_EVENT_LOG_SIZE : maxEvents;
|
||||
|
||||
/* If fewer than 1 event is requested, there must have
|
||||
* been some type of error.
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue