Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 7563
b: refs/heads/master
c: 09bbe10
h: refs/heads/master
i:
  7561: 9b90654
  7559: 5c510e6
v: v3
  • Loading branch information
David S. Miller committed Sep 7, 2005
1 parent 13c85e8 commit d3d7e96
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 5 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: 93c37f292110a37dd77e4cc0aaf1c341d79bf6aa
refs/heads/master: 09bbe1043a65903c93f6b6df123e36e3584bfac7
9 changes: 5 additions & 4 deletions trunk/arch/sparc64/kernel/sunos_ioctl32.c
Original file line number Diff line number Diff line change
Expand Up @@ -152,11 +152,12 @@ asmlinkage int sunos_ioctl (int fd, u32 cmd, u32 arg)
ret = compat_sys_ioctl(fd, SIOCGIFCONF, arg);
goto out;

case _IOW('i', 21, struct ifreq): /* SIOCSIFMTU */
ret = sys_ioctl(fd, SIOCSIFMTU, arg);
case _IOW('i', 21, struct ifreq32):
ret = compat_sys_ioctl(fd, SIOCSIFMTU, arg);
goto out;
case _IOWR('i', 22, struct ifreq): /* SIOCGIFMTU */
ret = sys_ioctl(fd, SIOCGIFMTU, arg);

case _IOWR('i', 22, struct ifreq32):
ret = compat_sys_ioctl(fd, SIOCGIFMTU, arg);
goto out;

case _IOWR('i', 23, struct ifreq32):
Expand Down

0 comments on commit d3d7e96

Please sign in to comment.