Re: I.1 - System calls - ioctl

From: stephane eranian
Date: Thu Jul 30 2009 - 12:53:40 EST


On Thu, Jul 30, 2009 at 6:40 PM, Arnd Bergmann<arnd@xxxxxxxx> wrote:
> On Thursday 30 July 2009, stephane eranian wrote:
>> long sys_perf_counter_open(
>> Â Â Â Âstruct perf_counter_attr *attr,
>> Â Â Â Âenum perf_target_type Âtarget_type,
>> Â Â Â Âint target_id,
>> Â Â Â Âint group_fd,
>> Â Â Â Âunsigned long flags);
>>
>> Which is what you had, except without the struct.
>>
>> Then, it boils down to whether expressing a target id in 32 bits is enough.
>> Obviously, 64-bit would be the safest but then I understand this causes issues
>> on 32-bit systems.
>
> Just make it an unsigned long then, that still covers all cases
> where you only need the 64-bit type on 64-bit systems.
>
But that won't always work in the case of a 32-bit monitoring tool
running on top of
a 64-bit OS. Imagine the target id is indeed 64-bit, e.g., inode
number (as suggested
by Peter). It's not because you are a 32-bit tool than you cannot name
a monitoring
resource in a 64-bit OS.



> Â Â Â ÂArnd <><
>
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/