> Hi,
>
> Is there a particular reason why open_namei() is
> not exported to modules?
Is there any reason for exporting it? By default, stuff is _NOT_
exported. Think for a moment and you'll see why. Exported functions are
public API. Protection is weaker than for syscalls, but it's there and
exporting a function makes harder to do changes in core kernel. Unless
there are damn serious reasons for exporting something, it isn't done.
In particular, open_namei() is a helper function of filp_open(),
which _is_ exported. What use of open_namei() do you have in mind?
-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/