diff options
author | Stefan Richter <stefanr@s5r6.in-berlin.de> | 2006-09-12 20:35:54 -0700 |
---|---|---|
committer | Linus Torvalds <torvalds@g5.osdl.org> | 2006-09-13 07:32:14 -0700 |
commit | 7fbb36451a91de6e8f9ece4f1f1ee9bd8ebf838a (patch) | |
tree | 407afc82b2560a785592a6cb052f3124504fcf12 /drivers | |
parent | e11db063d86d0ef9d7903cb463bb542b5d4e9ddd (diff) | |
download | op-kernel-dev-7fbb36451a91de6e8f9ece4f1f1ee9bd8ebf838a.zip op-kernel-dev-7fbb36451a91de6e8f9ece4f1f1ee9bd8ebf838a.tar.gz |
[PATCH] SCSI: lockdep annotation in scsi_send_eh_cmnd
Fixup for lockdep enabled kernels: Annotate an on-stack completion.
Signed-off-by: Stefan Richter <stefanr@s5r6.in-berlin.de>
Acked-by: Ingo Molnar <mingo@elte.hu>
Cc: James Bottomley <James.Bottomley@steeleye.com>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to 'drivers')
-rw-r--r-- | drivers/scsi/scsi_error.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/scsi/scsi_error.c b/drivers/scsi/scsi_error.c index a8ed5a2..3d355d0 100644 --- a/drivers/scsi/scsi_error.c +++ b/drivers/scsi/scsi_error.c @@ -466,7 +466,7 @@ static int scsi_send_eh_cmnd(struct scsi_cmnd *scmd, unsigned char *cmnd, struct scsi_device *sdev = scmd->device; struct Scsi_Host *shost = sdev->host; int old_result = scmd->result; - DECLARE_COMPLETION(done); + DECLARE_COMPLETION_ONSTACK(done); unsigned long timeleft; unsigned long flags; unsigned char old_cmnd[MAX_COMMAND_SIZE]; |