-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
target: Pass 2nd param of transport_split_cdb by value
Since sectors is not modified, it's more straightforward to do this. Signed-off-by: Andy Grover <agrover@redhat.com> Signed-off-by: Nicholas Bellinger <nab@linux-iscsi.org>
- Loading branch information
Andy Grover
authored and
Nicholas Bellinger
committed
Jul 22, 2011
1 parent
d0229ae
commit 3a86720
Showing
4 changed files
with
17 additions
and
18 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,10 @@ | ||
#ifndef TARGET_CORE_SCDB_H | ||
#define TARGET_CORE_SCDB_H | ||
|
||
extern void split_cdb_XX_6(unsigned long long, u32 *, unsigned char *); | ||
extern void split_cdb_XX_10(unsigned long long, u32 *, unsigned char *); | ||
extern void split_cdb_XX_12(unsigned long long, u32 *, unsigned char *); | ||
extern void split_cdb_XX_16(unsigned long long, u32 *, unsigned char *); | ||
extern void split_cdb_XX_32(unsigned long long, u32 *, unsigned char *); | ||
extern void split_cdb_XX_6(unsigned long long, u32, unsigned char *); | ||
extern void split_cdb_XX_10(unsigned long long, u32, unsigned char *); | ||
extern void split_cdb_XX_12(unsigned long long, u32, unsigned char *); | ||
extern void split_cdb_XX_16(unsigned long long, u32, unsigned char *); | ||
extern void split_cdb_XX_32(unsigned long long, u32, unsigned char *); | ||
|
||
#endif /* TARGET_CORE_SCDB_H */ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters