Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 173620
b: refs/heads/master
c: 35e6601
h: refs/heads/master
v: v3
  • Loading branch information
Jayamohan Kallickal authored and James Bottomley committed Dec 4, 2009
1 parent f469b89 commit 68e891c
Show file tree
Hide file tree
Showing 4 changed files with 170 additions and 49 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: bfead3b2cb4607c71831423c3ee97d22cd0c9dcb
refs/heads/master: 35e6601903fc41e48e9b6722a49cc5acc7065c51
6 changes: 3 additions & 3 deletions trunk/drivers/scsi/be2iscsi/be_cmds.c
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,7 @@ static void beiscsi_cq_notify(struct beiscsi_hba *phba, u16 qid, bool arm,
}


int be_process_mcc(struct beiscsi_hba *phba)
int beiscsi_process_mcc(struct beiscsi_hba *phba)
{
struct be_mcc_compl *compl;
int num = 0, status = 0;
Expand Down Expand Up @@ -161,7 +161,7 @@ static int be_mcc_wait_compl(struct beiscsi_hba *phba)
#define mcc_timeout 120000 /* 5s timeout */
int i, status;
for (i = 0; i < mcc_timeout; i++) {
status = be_process_mcc(phba);
status = beiscsi_process_mcc(phba);
if (status)
return status;

Expand Down Expand Up @@ -504,7 +504,7 @@ static u32 be_encoded_q_len(int q_len)
return len_encoded;
}

int be_cmd_mccq_create(struct beiscsi_hba *phba,
int beiscsi_cmd_mccq_create(struct beiscsi_hba *phba,
struct be_queue_info *mccq,
struct be_queue_info *cq)
{
Expand Down
2 changes: 1 addition & 1 deletion trunk/drivers/scsi/be2iscsi/be_cmds.h
Original file line number Diff line number Diff line change
Expand Up @@ -418,7 +418,7 @@ int beiscsi_cmd_cq_create(struct be_ctrl_info *ctrl,

int beiscsi_cmd_q_destroy(struct be_ctrl_info *ctrl, struct be_queue_info *q,
int type);
int be_cmd_mccq_create(struct beiscsi_hba *phba,
int beiscsi_cmd_mccq_create(struct beiscsi_hba *phba,
struct be_queue_info *mccq,
struct be_queue_info *cq);

Expand Down
Loading

0 comments on commit 68e891c

Please sign in to comment.