From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S932069AbbFXNy7 (ORCPT ); Wed, 24 Jun 2015 09:54:59 -0400 Received: from mx1.redhat.com ([209.132.183.28]:55365 "EHLO mx1.redhat.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1753169AbbFXNyw (ORCPT ); Wed, 24 Jun 2015 09:54:52 -0400 Date: Wed, 24 Jun 2015 15:53:34 +0200 From: Oleg Nesterov To: Andy Lutomirski Cc: Andrew Morton , Al Viro , Benjamin LaHaise , Hugh Dickins , Jeff Moyer , Kirill Shutemov , Linus Torvalds , "linux-kernel@vger.kernel.org" , Andy Lutomirski , Pavel Emelyanov Subject: Re: [PATCH 0/1] mm: move ->mremap() from file_operations to vm_operations_struct Message-ID: <20150624135334.GA780@redhat.com> References: <20150623180225.GA12882@redhat.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: User-Agent: Mutt/1.5.18 (2008-05-17) Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On 06/23, Andy Lutomirski wrote: > > On Tue, Jun 23, 2015 at 11:02 AM, Oleg Nesterov wrote: > > On 06/22, Andy Lutomirski wrote: > >> > >> On Mon, Jun 22, 2015 at 5:47 PM, Oleg Nesterov wrote: > >> > > >> > I never understood why ->mremap() lives in file_operations, not in > >> > vm_operations_struct. To me vma->vm_file->f_op in move_vma() just > >> > looks strange, vma->vm_ops->mremap(new_vma) looks "obviously better". > >> > > >> > And afaics more useful. CRIU remaps vdso, but this does not update > >> > mm->context.vdso. OK, probably this does not matter currently, CRIU > >> > can't c/r the compat tasks, and 64-bit apps do not use context.vdso. > >> > Afaics. Still, I think we might want to have special_mapping_remap() > >> > and we can't do this because ->vm_file == NULL. > >> > >> I would like this. Then I could clean up and resubmit my patch to > >> keep context.vdso up to date. > > > > Cough... where can I find this patch ? ;) > > > > https://git.kernel.org/cgit/linux/kernel/git/luto/linux.git/log/?h=vdso/vma_tracking Aha, thanks. So yes, looks like your "Add a mechanism to track the current address of a special mapping" can rely on vm_ops->mremap(). Oleg.