Lines 33-39
Link Here
|
33 |
* autofs_wqt_t stays constant between 32- and 64-bit Linux kernels so that we |
33 |
* autofs_wqt_t stays constant between 32- and 64-bit Linux kernels so that we |
34 |
* do not break the binary ABI interface by changing the structure size. |
34 |
* do not break the binary ABI interface by changing the structure size. |
35 |
*/ |
35 |
*/ |
36 |
#if defined(__ia64__) || defined(__alpha__) /* pure 64bit architectures */ |
36 |
#if defined(__ia64__) || defined(__alpha__) || defined(__e2k__) |
|
|
37 |
/* pure 64bit architectures */ |
37 |
typedef unsigned long autofs_wqt_t; |
38 |
typedef unsigned long autofs_wqt_t; |
38 |
#else |
39 |
#else |
39 |
typedef unsigned int autofs_wqt_t; |
40 |
typedef unsigned int autofs_wqt_t; |
40 |
- |
|
|