[Devel] Re: [PATCH 1/3] The sysctl shadows
Dave Hansen
haveblue at us.ibm.com
Tue Nov 20 09:16:49 PST 2007
On Tue, 2007-11-20 at 14:43 +0300, Pavel Emelyanov wrote:
>
> +static void ctl_free_table(struct ctl_table *t)
> +{
> + struct ctl_table *tmp;
> +
> + for (tmp = t; tmp->ctl_name || tmp->procname; tmp++)
> + if (tmp->child)
> + ctl_free_table(tmp->child);
> +
> + kfree(t);
> +}
Are you worried about the recursion at all?
-- Dave
_______________________________________________
Containers mailing list
Containers at lists.linux-foundation.org
https://lists.linux-foundation.org/mailman/listinfo/containers
More information about the Devel
mailing list