Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
L
linux-davinci
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Redmine
Redmine
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Metrics
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
linux
linux-davinci
Commits
8b384b81
Commit
8b384b81
authored
Aug 07, 2006
by
Greg Kroah-Hartman
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'for-linus' of
git://git390.osdl.marist.edu/pub/scm/linux-2.6
parents
dbd43d08
65200c29
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
5 additions
and
1 deletion
+5
-1
drivers/s390/char/tape_class.c
drivers/s390/char/tape_class.c
+1
-1
drivers/s390/cio/device_fsm.c
drivers/s390/cio/device_fsm.c
+1
-0
drivers/s390/cio/device_ops.c
drivers/s390/cio/device_ops.c
+3
-0
No files found.
drivers/s390/char/tape_class.c
View file @
8b384b81
...
...
@@ -76,7 +76,7 @@ struct tape_class_device *register_tape_dev(
device
,
"%s"
,
tcd
->
device_name
);
rc
=
PTR_ERR
(
tcd
->
class_device
)
;
rc
=
IS_ERR
(
tcd
->
class_device
)
?
PTR_ERR
(
tcd
->
class_device
)
:
0
;
if
(
rc
)
goto
fail_with_cdev
;
rc
=
sysfs_create_link
(
...
...
drivers/s390/cio/device_fsm.c
View file @
8b384b81
...
...
@@ -772,6 +772,7 @@ ccw_device_online_verify(struct ccw_device *cdev, enum dev_event dev_event)
stsch
(
sch
->
schid
,
&
sch
->
schib
);
if
(
sch
->
schib
.
scsw
.
actl
!=
0
||
(
sch
->
schib
.
scsw
.
stctl
&
SCSW_STCTL_STATUS_PEND
)
||
(
cdev
->
private
->
irb
.
scsw
.
stctl
&
SCSW_STCTL_STATUS_PEND
))
{
/*
* No final status yet or final status not yet delivered
...
...
drivers/s390/cio/device_ops.c
View file @
8b384b81
...
...
@@ -263,6 +263,9 @@ ccw_device_wake_up(struct ccw_device *cdev, unsigned long ip, struct irb *irb)
/* Abuse intparm for error reporting. */
if
(
IS_ERR
(
irb
))
cdev
->
private
->
intparm
=
-
EIO
;
else
if
(
irb
->
scsw
.
cc
==
1
)
/* Retry for deferred condition code. */
cdev
->
private
->
intparm
=
-
EAGAIN
;
else
if
((
irb
->
scsw
.
dstat
!=
(
DEV_STAT_CHN_END
|
DEV_STAT_DEV_END
))
||
(
irb
->
scsw
.
cstat
!=
0
))
{
...
...
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