mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2026-04-29 11:44:39 -04:00
IB/hfi1: Pass packet ptr to set_armed_active
The "packet" parameter was being passed on the stack, change it to a pointer. Reviewed-by: Don Hiatt <don.hiatt@intel.com> Signed-off-by: Mike Marciniszyn <mike.marciniszyn@intel.com> Signed-off-by: Doug Ledford <dledford@redhat.com>
This commit is contained in:
committed by
Doug Ledford
parent
140690eae7
commit
c867caaf8e
@@ -888,14 +888,14 @@ void set_all_slowpath(struct hfi1_devdata *dd)
|
||||
}
|
||||
|
||||
static inline int set_armed_to_active(struct hfi1_ctxtdata *rcd,
|
||||
struct hfi1_packet packet,
|
||||
struct hfi1_packet *packet,
|
||||
struct hfi1_devdata *dd)
|
||||
{
|
||||
struct work_struct *lsaw = &rcd->ppd->linkstate_active_work;
|
||||
struct hfi1_message_header *hdr = hfi1_get_msgheader(packet.rcd->dd,
|
||||
packet.rhf_addr);
|
||||
struct hfi1_message_header *hdr = hfi1_get_msgheader(packet->rcd->dd,
|
||||
packet->rhf_addr);
|
||||
|
||||
if (hdr2sc(hdr, packet.rhf) != 0xf) {
|
||||
if (hdr2sc(hdr, packet->rhf) != 0xf) {
|
||||
int hwstate = read_logical_state(dd);
|
||||
|
||||
if (hwstate != LSTATE_ACTIVE) {
|
||||
@@ -979,7 +979,7 @@ int handle_receive_interrupt(struct hfi1_ctxtdata *rcd, int thread)
|
||||
/* Auto activate link on non-SC15 packet receive */
|
||||
if (unlikely(rcd->ppd->host_link_state ==
|
||||
HLS_UP_ARMED) &&
|
||||
set_armed_to_active(rcd, packet, dd))
|
||||
set_armed_to_active(rcd, &packet, dd))
|
||||
goto bail;
|
||||
last = process_rcv_packet(&packet, thread);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user