Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
L
linux
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
linux
Commits
ab009322
Commit
ab009322
authored
Oct 20, 2004
by
Richard Russon
Browse files
Options
Browse Files
Download
Plain Diff
Merge flatcap.org:/home/flatcap/backup/bk/ntfs-2.6
into flatcap.org:/home/flatcap/backup/bk/ntfs-2.6-devel
parents
b04e5fda
2a136606
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
13 additions
and
13 deletions
+13
-13
drivers/ieee1394/sbp2.c
drivers/ieee1394/sbp2.c
+4
-4
drivers/ieee1394/sbp2.h
drivers/ieee1394/sbp2.h
+9
-9
No files found.
drivers/ieee1394/sbp2.c
View file @
ab009322
...
...
@@ -1087,7 +1087,7 @@ static int sbp2_query_logins(struct scsi_id_instance_data *scsi_id)
scsi_id
->
query_logins_orb
->
query_response_hi
=
ORB_SET_NODE_ID
(
hi
->
host
->
node_id
);
SBP2_DEBUG
(
"sbp2_query_logins: query_response_hi/lo initialized"
);
scsi_id
->
query_logins_orb
->
lun_misc
=
ORB_SET_FUNCTION
(
QUERY_LOGINS_REQUEST
);
scsi_id
->
query_logins_orb
->
lun_misc
=
ORB_SET_FUNCTION
(
SBP2_
QUERY_LOGINS_REQUEST
);
scsi_id
->
query_logins_orb
->
lun_misc
|=
ORB_SET_NOTIFY
(
1
);
if
(
scsi_id
->
sbp2_device_type_and_lun
!=
SBP2_DEVICE_TYPE_LUN_UNINITIALIZED
)
{
scsi_id
->
query_logins_orb
->
lun_misc
|=
ORB_SET_LUN
(
scsi_id
->
sbp2_device_type_and_lun
);
...
...
@@ -1198,7 +1198,7 @@ static int sbp2_login_device(struct scsi_id_instance_data *scsi_id)
scsi_id
->
login_orb
->
login_response_hi
=
ORB_SET_NODE_ID
(
hi
->
host
->
node_id
);
SBP2_DEBUG
(
"sbp2_login_device: login_response_hi/lo initialized"
);
scsi_id
->
login_orb
->
lun_misc
=
ORB_SET_FUNCTION
(
LOGIN_REQUEST
);
scsi_id
->
login_orb
->
lun_misc
=
ORB_SET_FUNCTION
(
SBP2_
LOGIN_REQUEST
);
scsi_id
->
login_orb
->
lun_misc
|=
ORB_SET_RECONNECT
(
0
);
/* One second reconnect time */
scsi_id
->
login_orb
->
lun_misc
|=
ORB_SET_EXCLUSIVE
(
exclusive_login
);
/* Exclusive access to device */
scsi_id
->
login_orb
->
lun_misc
|=
ORB_SET_NOTIFY
(
1
);
/* Notify us of login complete */
...
...
@@ -1324,7 +1324,7 @@ static int sbp2_logout_device(struct scsi_id_instance_data *scsi_id)
scsi_id
->
logout_orb
->
reserved3
=
0x0
;
scsi_id
->
logout_orb
->
reserved4
=
0x0
;
scsi_id
->
logout_orb
->
login_ID_misc
=
ORB_SET_FUNCTION
(
LOGOUT_REQUEST
);
scsi_id
->
logout_orb
->
login_ID_misc
=
ORB_SET_FUNCTION
(
SBP2_
LOGOUT_REQUEST
);
scsi_id
->
logout_orb
->
login_ID_misc
|=
ORB_SET_LOGIN_ID
(
scsi_id
->
login_response
->
length_login_ID
);
/* Notify us when complete */
...
...
@@ -1389,7 +1389,7 @@ static int sbp2_reconnect_device(struct scsi_id_instance_data *scsi_id)
scsi_id
->
reconnect_orb
->
reserved3
=
0x0
;
scsi_id
->
reconnect_orb
->
reserved4
=
0x0
;
scsi_id
->
reconnect_orb
->
login_ID_misc
=
ORB_SET_FUNCTION
(
RECONNECT_REQUEST
);
scsi_id
->
reconnect_orb
->
login_ID_misc
=
ORB_SET_FUNCTION
(
SBP2_
RECONNECT_REQUEST
);
scsi_id
->
reconnect_orb
->
login_ID_misc
|=
ORB_SET_LOGIN_ID
(
scsi_id
->
login_response
->
length_login_ID
);
...
...
drivers/ieee1394/sbp2.h
View file @
ab009322
...
...
@@ -52,15 +52,15 @@ struct sbp2_command_orb {
u8
cdb
[
12
];
};
#define
LOGIN_REQUEST
0x0
#define
QUERY_LOGINS_REQUEST
0x1
#define RECONNECT_REQUEST 0x3
#define S
ET_PASSWORD_REQUEST
0x4
#define
LOGOUT_REQUEST
0x7
#define ABORT_TASK_REQUEST 0xb
#define
ABORT_TASK_SET
0xc
#define LOGICAL_UNIT_RESET 0xe
#define
TARGET_RESET_REQUEST
0xf
#define
SBP2_LOGIN_REQUEST
0x0
#define
SBP2_QUERY_LOGINS_REQUEST
0x1
#define
SBP2_
RECONNECT_REQUEST 0x3
#define S
BP2_SET_PASSWORD_REQUEST
0x4
#define
SBP2_LOGOUT_REQUEST
0x7
#define
SBP2_
ABORT_TASK_REQUEST 0xb
#define
SBP2_ABORT_TASK_SET
0xc
#define
SBP2_
LOGICAL_UNIT_RESET 0xe
#define
SBP2_TARGET_RESET_REQUEST
0xf
#define ORB_SET_LUN(value) (value & 0xffff)
#define ORB_SET_FUNCTION(value) ((value & 0xf) << 16)
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment