From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S932626Ab1ISVqj (ORCPT ); Mon, 19 Sep 2011 17:46:39 -0400 Received: from one.firstfloor.org ([213.235.205.2]:54394 "EHLO one.firstfloor.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1756490Ab1ISVqi (ORCPT ); Mon, 19 Sep 2011 17:46:38 -0400 Date: Mon, 19 Sep 2011 23:46:36 +0200 From: Andi Kleen To: Thomas Gleixner Cc: Andi Kleen , linux-kernel@vger.kernel.org, akpm@linux-foundation.org, eric.dumazet@gmail.com, Andi Kleen Subject: Re: [PATCH 1/4] posix-timers: move global timer id management to signal_struct v2 Message-ID: <20110919214636.GN7761@one.firstfloor.org> References: <1314661157-22173-1-git-send-email-andi@firstfloor.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: User-Agent: Mutt/1.4.2.2i Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org > > .cpu_timers = INIT_CPU_TIMERS(sig.cpu_timers), \ > > .rlim = INIT_RLIMITS, \ > > .cputimer = { \ > > @@ -46,6 +48,7 @@ extern struct fs_struct init_fs; > > }, \ > > .cred_guard_mutex = \ > > __MUTEX_INITIALIZER(sig.cred_guard_mutex), \ > > + .posix_timers_id = IDR_INIT(posix_timer_id), \ > > sig.posix_timer_id I don't understand this comment. This is already the signal_struct. Do you want double nesting? -Andi