2002-11-13 22:46:52

by Shaya Potter

[permalink] [raw]
Subject: figuring out which ioctl's a system needs?

I'm trying to figure out what is the subset of ioctl's a system needs to
run. I figure the best way is sticking a printk in sys_ioctl, and
having it printk the number, so that syslog can pick it up, and then go
through the list. This way I can use the system normally for a week to
collect the information I need.

Is there an easier way, or is there a way that I can make my life easier
(i.e. going from printk'd number to header file include).

thanks,

shaya potter


2002-11-14 08:31:46

by SL Baur

[permalink] [raw]
Subject: Re: figuring out which ioctl's a system needs?

> I'm trying to figure out what is the subset of ioctl's a system needs
> to run. I figure the best way is sticking a printk in sys_ioctl, and
> having it printk the number, so that syslog can pick it up, and then
> go through the list. This way I can use the system normally for a
> week to collect the information I need.

> Is there an easier way, or is there a way that I can make my life
> easier (i.e. going from printk'd number to header file include).

Install the Linux Trace Toolkit and enable tracing for ioctls.
See http://www.opersys.com/LTT for details.