Re: [2.6 patch] kernel/cgroup.c: make 2 functions static

2007-10-24 Thread Paul Menage
On 10/24/07, Adrian Bunk <[EMAIL PROTECTED]> wrote: > cgroup_is_releasable() and notify_on_release() should be static, > not global inline. > > Signed-off-by: Adrian Bunk <[EMAIL PROTECTED]> Acked-by: Paul Menage <[EMAIL PROTECTED]> > > --- > > kernel/cgroup.c |4 ++-- > 1 file changed, 2 in

Re: [2.6 patch] kernel/cgroup.c: make 2 functions static

2007-10-24 Thread Adrian Bunk
On Wed, Oct 24, 2007 at 09:32:26AM -0700, Paul Menage wrote: > On 10/24/07, Adrian Bunk <[EMAIL PROTECTED]> wrote: > > cgroup_is_releasable() and notify_on_release() should be static, > > not global inline. > > > > They seem like they could be usefully static inline - or will the > compiler inline

Re: [2.6 patch] kernel/cgroup.c: make 2 functions static

2007-10-24 Thread Paul Menage
On 10/24/07, Adrian Bunk <[EMAIL PROTECTED]> wrote: > cgroup_is_releasable() and notify_on_release() should be static, > not global inline. > They seem like they could be usefully static inline - or will the compiler inline them anyway since they're simple enough? Paul - To unsubscribe from this

[2.6 patch] kernel/cgroup.c: make 2 functions static

2007-10-24 Thread Adrian Bunk
cgroup_is_releasable() and notify_on_release() should be static, not global inline. Signed-off-by: Adrian Bunk <[EMAIL PROTECTED]> --- kernel/cgroup.c |4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 626d10ec224de07fc7906b0aa82e035e153709ce diff --git a/kernel/cgroup.c b/kernel/cg