Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1751135AbVKJGWm (ORCPT ); Thu, 10 Nov 2005 01:22:42 -0500 Received: (majordomo@vger.kernel.org) by vger.kernel.org id S1751131AbVKJGWm (ORCPT ); Thu, 10 Nov 2005 01:22:42 -0500 Received: from smtp.osdl.org ([65.172.181.4]:984 "EHLO smtp.osdl.org") by vger.kernel.org with ESMTP id S1751135AbVKJGWm (ORCPT ); Thu, 10 Nov 2005 01:22:42 -0500 Date: Wed, 9 Nov 2005 22:22:23 -0800 From: Andrew Morton To: Arun Sharma Cc: rohit.seth@intel.com, linux-kernel@vger.kernel.org Subject: Re: [PATCH] Expose SHM_HUGETLB in shmctl(id, IPC_STAT, ...) Message-Id: <20051109222223.538309e4.akpm@osdl.org> In-Reply-To: <20051109184623.GA21636@sharma-home.net> References: <20051109184623.GA21636@sharma-home.net> X-Mailer: Sylpheed version 1.0.4 (GTK+ 1.2.10; i386-redhat-linux-gnu) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Sender: linux-kernel-owner@vger.kernel.org X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 1169 Lines: 39 Arun Sharma wrote: > > Allow shmctl to find out if a shmid corresponds to a HUGETLB segment > > Signed-off-by: Arun Sharma > Acked-by: Rohit Seth > > --- a/ipc/shm.c Tue Nov 8 20:58:38 2005 > +++ b/ipc/shm.c Wed Nov 9 10:26:37 2005 > @@ -197,7 +197,7 @@ > return -ENOMEM; > > shp->shm_perm.key = key; > - shp->shm_flags = (shmflg & S_IRWXUGO); > + shp->shm_flags = (shmflg & (S_IRWXUGO | SHM_HUGETLB)); > shp->mlock_user = NULL; > > shp->shm_perm.security = NULL; I dunno. The manpage says: The highlighted fields in the member shm_perm can be set: struct ipc_perm { ... ushort mode; /* lower 9 bits of access modes */ ... }; So if an application used to do: if (perm.mode == 0666) it will now break, because we've gone and set bit 9 on hugetlb segments. - 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/