Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 364319
b: refs/heads/master
c: 579a00a
h: refs/heads/master
i:
  364317: 5d71a56
  364315: e43bf3b
  364311: 645630d
  364303: 86da179
  364287: 034af96
v: v3
  • Loading branch information
Peter Hurley authored and Greg Kroah-Hartman committed Apr 15, 2013
1 parent 3ca9b08 commit b1d4079
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 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: 31815c08fc90f44d6165034fd473f23df5d31449
refs/heads/master: 579a00a5c2f0a85fb4602a53e2c1beb77a646528
4 changes: 2 additions & 2 deletions trunk/drivers/tty/tty_ioctl.c
Original file line number Diff line number Diff line change
Expand Up @@ -156,7 +156,7 @@ int tty_throttle_safe(struct tty_struct *tty)
if (tty->flow_change != TTY_THROTTLE_SAFE)
ret = 1;
else {
__set_bit(TTY_THROTTLED, &tty->flags);
set_bit(TTY_THROTTLED, &tty->flags);
if (tty->ops->throttle)
tty->ops->throttle(tty);
}
Expand Down Expand Up @@ -187,7 +187,7 @@ int tty_unthrottle_safe(struct tty_struct *tty)
if (tty->flow_change != TTY_UNTHROTTLE_SAFE)
ret = 1;
else {
__clear_bit(TTY_THROTTLED, &tty->flags);
clear_bit(TTY_THROTTLED, &tty->flags);
if (tty->ops->unthrottle)
tty->ops->unthrottle(tty);
}
Expand Down

0 comments on commit b1d4079

Please sign in to comment.