Nick Bowler
a9d25bde1e
xfs: Fix x32 ioctls when cmd numbers differ from ia32.
...
Several ioctl structs change size between native 32-bit (ia32) and x32
applications, because x32 follows the native 64-bit (amd64) integer
alignment rules and uses 64-bit time_t. In these instances, the ioctl
number changes so userspace simply gets -ENOTTY. This scenario can be
handled by simply adding more cases.
Looking at the different ioctls implemented here:
- All the ones marked 'No size or alignment issue on any arch' should
presumably all be fine.
- All the ones under BROKEN_X86_ALIGNMENT are different under integer
alignment rules. Since x32 matches amd64 here, we just need both
sets of cases handled.
- XFS_IOC_SWAPEXT has both integer alignment differences and time_t
differences. Since x32 matches amd64 here, we need to add a case
which calls the native implementation.
- The remaining ioctls have neither 64-bit integers nor time_t, so
x32 matches ia32 here and no change is required at this level. The
bulkstat ioctl implementations have some pointer chasing which is
handled separately.
Signed-off-by: Nick Bowler <nbowler@draconx.ca >
Reviewed-by: Darrick J. Wong <darrick.wong@oracle.com >
Signed-off-by: Darrick J. Wong <darrick.wong@oracle.com >
2018-12-18 10:55:21 -08:00
..
2018-11-01 19:58:52 -07:00
2018-08-22 10:52:51 -07:00
2018-05-28 12:36:41 +02:00
2018-11-30 10:47:50 -08:00
2018-08-22 12:34:08 -07:00
2018-06-15 18:10:01 -03:00
2018-11-03 10:09:38 -07:00
2018-12-05 09:58:17 -08:00
2018-11-30 16:00:58 +00:00
2018-11-08 17:51:11 +01:00
2018-12-07 00:59:23 -06:00
2018-06-05 16:57:31 -07:00
2018-07-17 06:14:07 -07:00
2018-10-30 12:46:25 -07:00
2018-09-04 11:35:03 +08:00
2018-06-12 20:52:16 -07:00
2018-08-21 23:54:17 -04:00
2018-10-24 00:41:07 +01:00
2018-10-09 23:33:17 -04:00
2018-07-22 14:13:44 +02:00
2018-10-18 02:04:59 -04:00
2018-11-23 09:08:17 -05:00
2018-11-27 10:21:15 +01:00
2018-11-11 16:53:02 -06:00
2018-10-28 11:35:40 -07:00
2018-10-31 08:54:14 -07:00
2018-05-22 14:27:51 -04:00
2018-11-30 15:57:31 +00:00
2018-11-09 15:52:17 +01:00
2018-11-16 11:38:14 -06:00
2018-11-30 14:56:14 -08:00
2018-11-30 14:56:14 -08:00
2018-08-17 16:20:28 -07:00
2018-08-25 12:42:33 -07:00
2018-08-22 10:52:44 -07:00
2018-09-29 22:47:48 -04:00
2018-10-05 18:44:40 -04:00
2018-10-24 11:22:39 +01:00
2018-09-20 09:28:49 -05:00
2018-10-26 16:26:33 -07:00
2018-10-29 16:58:04 -04:00
2018-05-22 14:27:52 -04:00
2018-12-02 09:43:56 -05:00
2018-03-27 13:18:09 -04:00
2018-11-08 12:11:45 -05:00
2018-11-05 14:57:05 -05:00
2018-11-08 15:43:48 +01:00
2018-10-12 22:46:50 -04:00
2018-11-30 14:56:15 -08:00
2018-05-22 14:27:58 -04:00
2018-05-22 14:27:57 -04:00
2018-11-01 19:58:52 -07:00
2018-11-02 09:33:08 -07:00
2018-11-01 11:46:27 -07:00
2018-11-30 09:03:15 -08:00
2018-05-22 14:27:52 -04:00
2018-05-22 14:27:54 -04:00
2018-08-22 18:17:48 +02:00
2018-10-31 08:54:14 -07:00
2018-05-22 14:27:55 -04:00
2018-08-02 09:34:02 -07:00
2018-08-18 11:44:53 -07:00
2018-11-10 08:02:40 -05:00
2018-07-31 11:32:44 -04:00
2018-10-23 13:49:02 +02:00
2018-11-19 10:27:59 +01:00
2018-08-17 16:20:27 -07:00
2018-12-18 10:55:21 -08:00
2018-11-17 10:05:07 -05:00
2018-07-12 10:04:27 -04:00
2018-07-03 16:44:45 -04:00
2018-07-12 10:04:20 -04:00
2018-04-11 10:28:37 -07:00
2018-06-12 16:19:22 -07:00
2018-10-03 16:47:43 +02:00
2018-04-11 10:28:37 -07:00
2018-07-10 23:29:03 -04:00
2018-10-24 00:40:44 +01:00
2018-11-02 11:25:48 -07:00
2018-03-15 17:59:24 +01:00
2018-08-27 14:48:48 +02:00
2018-10-29 14:29:58 -07:00
2018-06-05 19:23:26 +02:00
2018-10-03 16:47:43 +02:00
2018-03-29 15:07:46 -04:00
2018-12-04 21:32:00 -08:00
2018-10-31 08:54:16 -07:00
2018-04-02 20:15:39 +02:00
2018-11-30 08:35:14 -07:00
2018-06-28 10:40:47 -07:00
2018-08-22 10:52:49 -07:00
2018-12-04 16:04:20 +01:00
2018-10-03 16:47:43 +02:00
2018-08-21 18:19:09 -07:00
2018-04-02 20:16:00 +02:00
2018-05-16 07:23:35 +02:00
2018-10-21 10:46:42 -04:00
2018-11-18 10:15:09 -08:00
2018-08-21 18:19:09 -07:00
2018-11-02 09:33:08 -07:00
2018-12-04 09:40:02 -08:00
2018-06-11 08:22:34 -07:00
2018-08-02 08:06:55 +09:00
2018-03-30 11:34:55 -07:00
2018-08-21 18:19:09 -07:00
2018-06-11 08:22:34 -07:00
2018-06-12 16:19:22 -07:00
2018-08-17 16:20:29 -07:00
2018-08-23 18:48:43 -07:00
2018-11-12 01:02:34 -06:00
2018-08-21 18:19:09 -07:00
2018-08-13 19:58:36 -07:00
2018-12-04 08:50:49 -08:00
2018-04-02 20:16:02 +02:00
2018-08-27 14:48:48 +02:00
2018-08-17 16:20:28 -07:00
2018-10-03 16:47:43 +02:00
2018-12-04 08:50:49 -08:00
2018-08-29 15:42:20 +02:00
2018-07-12 14:49:48 +01:00
2018-09-03 15:14:01 +02:00
2018-04-04 12:44:02 -07:00
2018-08-27 14:48:48 +02:00
2018-11-30 14:56:14 -08:00
2018-08-29 15:42:23 +02:00
2018-09-18 07:30:48 -04:00