From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1753420AbZCCIln (ORCPT ); Tue, 3 Mar 2009 03:41:43 -0500 Received: (majordomo@vger.kernel.org) by vger.kernel.org id S1753406AbZCCIlb (ORCPT ); Tue, 3 Mar 2009 03:41:31 -0500 Received: from cn.fujitsu.com ([222.73.24.84]:60310 "EHLO song.cn.fujitsu.com" rhost-flags-OK-FAIL-OK-OK) by vger.kernel.org with ESMTP id S1754429AbZCCIla (ORCPT ); Tue, 3 Mar 2009 03:41:30 -0500 Message-ID: <49ACED6A.9060002@cn.fujitsu.com> Date: Tue, 03 Mar 2009 16:42:18 +0800 From: Li Zefan User-Agent: Thunderbird 2.0.0.9 (X11/20071115) MIME-Version: 1.0 To: Paul Menage CC: Ingo Molnar , Peter Zijlstra , Andrew Morton , LKML , Linux Containers Subject: Re: [PATCH] Allow cpusets to be configured/built on non-SMP systems References: <20090303013432.11211.18662.stgit@menage.corp.google.com> <49ACA13B.5050106@cn.fujitsu.com> <6599ad830903022201s4d2296c7u225e84a77f9f7167@mail.gmail.com> <6599ad830903030026w2081a72dhf3cac90346b1d806@mail.gmail.com> In-Reply-To: <6599ad830903030026w2081a72dhf3cac90346b1d806@mail.gmail.com> Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Paul Menage wrote: > On Mon, Mar 2, 2009 at 10:01 PM, Paul Menage wrote: >> On Mon, Mar 2, 2009 at 7:17 PM, Li Zefan wrote: >>>> +static int generate_sched_domains(struct cpumask **domains, >>>> + struct sched_domain_attr **attributes) >>>> +{ >>> Except here should "return 0;", otherwise emit a compile warining. >>> >> Good catch - the weird thing is that (in my UML build) it doesn't >> actually generate that warning. Mysterious. >> >> I'll resend with the extra return. > > After looking at the sched domains code it's not clear to me that > returning 0 is necessarily the right thing to do - > partition_sched_domains() says that 0 is a special case used for > destroying existing domains? Would returning 1 and setting up a single > dummy domain be better? > Yes, return 1 seems more reasonable. And if we do this, should we also set *domains to NULL like this? static int generate_sched_domains(struct cpumask **domains, struct sched_domain_attr **attributes) { *domains = NULL; return 1; } because otherwise partition_sched_domains() will access invalid memory: void partition_sched_domains(int ndoms_new, struct cpumask *doms_new, struct sched_domain_attr *dattr_new) { ... n = doms_new ? ndoms_new : 0; for (i = 0; i < ndoms_cur; i++) { for (j = 0; j < n && !new_topology; j++) { // *****here*****/ if (cpumask_equal(&doms_cur[i], &doms_new[j]) && dattrs_equal(dattr_cur, i, dattr_new, j)) goto match1; } ... } > Given that this return code only matters when CONFIG_HOTPLUG_CPU && > !CONFIG_SMP it's unlikely to ever be used That's why I didn't comment on this. > but I guess it's better to get it right. > But I agree with you. :)