From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1751906AbcBUSdW (ORCPT ); Sun, 21 Feb 2016 13:33:22 -0500 Received: from mail-ig0-f177.google.com ([209.85.213.177]:33530 "EHLO mail-ig0-f177.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1750950AbcBUSdU (ORCPT ); Sun, 21 Feb 2016 13:33:20 -0500 From: Eric Biggers To: rusty@rustcorp.com.au Cc: linux@rasmusvillemoes.dk, akpm@linux-foundation.org, amirv@mellanox.com, davem@davemloft.net, linux-kernel@vger.kernel.org, Eric Biggers Subject: [PATCH] cpumask: remove incorrect information from comment Date: Sun, 21 Feb 2016 12:32:47 -0600 Message-Id: <1456079567-7692-1-git-send-email-ebiggers3@gmail.com> X-Mailer: git-send-email 2.7.1 Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Since commit cdfdef75e795f ("cpumask: only allocate nr_cpumask_bits."), this comment above cpumask_size() is no longer relevant. Signed-off-by: Eric Biggers --- include/linux/cpumask.h | 2 -- 1 file changed, 2 deletions(-) diff --git a/include/linux/cpumask.h b/include/linux/cpumask.h index fc14275..40cee6b 100644 --- a/include/linux/cpumask.h +++ b/include/linux/cpumask.h @@ -607,8 +607,6 @@ static inline int cpulist_parse(const char *buf, struct cpumask *dstp) /** * cpumask_size - size to allocate for a 'struct cpumask' in bytes - * - * This will eventually be a runtime variable, depending on nr_cpu_ids. */ static inline size_t cpumask_size(void) { -- 2.7.1