diff options
| author | Eric Biggers <ebiggers@google.com> | 2017-11-06 22:37:09 -0800 |
|---|---|---|
| committer | Dmitry Vyukov <dvyukov@google.com> | 2017-11-07 12:26:11 +0300 |
| commit | a6b071286e5b8062fe7e34314eaffd059df60116 (patch) | |
| tree | 1c27af17947297b2c99d27502170e3afdd00c8cb /sys/linux/loop_ppc64le.const | |
| parent | 3f85f7fc461822add5e7d771e4be332f3d7891d7 (diff) | |
sys/linux: fix wrong ioctl numbers in loop device definitions
Fix a couple apparent copy-and-paste errors:
- ioctl$LOOP_CHANGE_FD should use LOOP_CHANGE_FD
- ioctl$LOOP_CTL_REMOVE should use LOOP_CTL_REMOVE
Diffstat (limited to 'sys/linux/loop_ppc64le.const')
| -rw-r--r-- | sys/linux/loop_ppc64le.const | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/sys/linux/loop_ppc64le.const b/sys/linux/loop_ppc64le.const index 726a5b2f5..18e59be61 100644 --- a/sys/linux/loop_ppc64le.const +++ b/sys/linux/loop_ppc64le.const @@ -1,8 +1,10 @@ # AUTOGENERATED FILE AT_FDCWD = 18446744073709551516 +LOOP_CHANGE_FD = 19462 LOOP_CLR_FD = 19457 LOOP_CTL_ADD = 19584 LOOP_CTL_GET_FREE = 19586 +LOOP_CTL_REMOVE = 19585 LOOP_GET_STATUS = 19459 LOOP_GET_STATUS64 = 19461 LOOP_SET_CAPACITY = 19463 |
