[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <20140724195302.GA28972@redhat.com>
Date: Thu, 24 Jul 2014 21:53:02 +0200
From: Oleg Nesterov <oleg@...hat.com>
To: Jerome Marchand <jmarchan@...hat.com>
Cc: linux-mm@...ck.org, linux-kernel@...r.kernel.org,
linux-s390@...r.kernel.org, linux-doc@...r.kernel.org,
Hugh Dickins <hughd@...gle.com>,
Arnaldo Carvalho de Melo <acme@...nel.org>,
Ingo Molnar <mingo@...hat.com>,
Paul Mackerras <paulus@...ba.org>,
Peter Zijlstra <a.p.zijls@...hat.com>
Subject: Re: [PATCH 3/5] mm, shmem: Add shmem_vma() helper
On 07/22, Jerome Marchand wrote:
>
> +bool shmem_vma(struct vm_area_struct *vma)
> +{
> + return (vma->vm_file &&
> + vma->vm_file->f_dentry->d_inode->i_mapping->backing_dev_info
> + == &shmem_backing_dev_info);
> +
> +}
Cosmetic nit, it seems that this helper could simply do
return vma->vm_file && shmem_mapping(file_inode(vma->vm_file));
Oleg.
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Powered by blists - more mailing lists