lkml.org 
[lkml]   [2005]   [Feb]   [27]   [last100]   RSS Feed
Views: [wrap][no wrap]   [headers]  [forward] 
 
Messages in this thread
/
Date
From
SubjectRe: [Lse-tech] Re: A common layer for Accounting packages
On Mon, Feb 28, 2005 at 12:20:40AM +0900, KaiGai Kohei wrote:
> Hi,
>
> >>Kaigai Kohei <kaigai@ak.jp.nec.com> wrote:
> >>
> >>>In my understanding, what Andrew Morton said is "If target functionality
> >>>can
> >>>implement in user space only, then we should not modify the kernel-tree".
> >>
> >>fork, exec and exit upcalls sound pretty good to me. As long as
> >>
> >>a) they use the same common machinery and
> >>
> >>b) they are next-to-zero cost if something is listening on the netlink
> >> socket but no accounting daemon is running.
> >
> >
> >b) would involved being able to avoid sending netlink messages in case
> >there are no listeners. AFAIK that isnt possible currently, netlink sends
> >packets unconditionally.
> >
> >Am I wrong?
>
> In current implementaion, you might be right.
> But we should make an effort to achieve the requirement-(b) from now.

Yep, the netlink people should be able to help - they known what would be
required for not sending messages in case there is no listener registered.

Maybe its already possible? I have never used netlink myself.

> And, why can't netlink packets send always?
> If there are fork/exec/exit hooks, and they call CSA or other
> process-grouping modules,
> then those modules will decide whether packets for interaction with the
> daemon should be
> sent or not.

The netlink data will be sent to userspace at fork/exec/exit hooks - one wants
to avoid that if there are no listeners, so setups which dont want to run the
accounting daemon dont pay the cost of building and sending the information
through netlink.

Thats what Andrew asked for if I understand correctly.

> In most considerable case, CSA's kernel-loadable-module using such hooks
> will not be loaded
> when no accounting daemon is running. Adversely, this module must be loaded
> when accounting
> daemon needs CSA's netlink packets.
> Thus, it is only necessary to refer flag valiable and to execute
> conditional-jump
> when no-accounting daemon is running.

That would be one hack, although it is uglier than the pure netlink
selection.

> In my estimation, we must pay additional cost for an increment-operation,
> an decrement-op,
> an comparison-op and an conditional jump-op. It's enough lightweight, I
> think.
>
> For example:
> If CSA's module isn't loaded, 'privates_for_grouping' will be empty.
>
> inline int on_fork_hook(task_struct *parent, task_struct *newtask){
> rcu_read_lock();
> if( !list_empty(&parent->privates_for_grouping) ){
> ..<Calling to any process grouping module>..;
> }
> rcu_read_unlock();
> }

Andrew has been talking about sending data over netlink to implement the
accounting at userspace, so this piece of code is out of the game, no?
-
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/

\
 
 \ /
  Last update: 2005-03-22 14:10    [W:2.053 / U:0.012 seconds]
©2003-2020 Jasper Spaans|hosted at Digital Ocean and TransIP|Read the blog|Advertise on this site