Received: by 2002:ac0:8845:0:0:0:0:0 with SMTP id g63csp559461img; Thu, 28 Feb 2019 04:17:22 -0800 (PST) X-Google-Smtp-Source: AHgI3Ia5E9C1v6+0wwO9Rn1SXPJPUhLAF6nZK7Tv9zLgNk8d0p5Nm3Rf1mq7EeMsE6BA1i/w/MMU X-Received: by 2002:a17:902:42e:: with SMTP id 43mr7829544ple.88.1551356242415; Thu, 28 Feb 2019 04:17:22 -0800 (PST) ARC-Seal: i=1; a=rsa-sha256; t=1551356242; cv=none; d=google.com; s=arc-20160816; b=zex+c9IzO3BB+ZLwQP9WNaDjjbDrvmLGa5dA016u5MXvC4gSK2ZDk3PwUf+ySihCI9 3XIie8vvP1ldI1CZNFklL+R9peVxHKdPPqGOjHgrUyvdF64B7qR6aqfvyWdrS3oVZ9KG aFSfhxwPtVzS/2u8gwJgx4Olu14IZYeCrzp40+AgbN0YnS9N5Nv7d21Y/toah8U6bHKS kWacPof6bDAPPVxpoT2SMPSCq0sjspNoNVtABopyyuMBi7z9YtoCo6d5guDQuPrSQjbv OvyQEIpuU2wIjgHS8DSHywAqXFzmdKJL1FRimCRz6cVyrI1PLtEbq47+oLhorcluuxCb Av1g== ARC-Message-Signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=arc-20160816; h=list-id:precedence:sender:user-agent:in-reply-to :content-disposition:mime-version:references:message-id:subject:cc :to:from:date; bh=Pv3BIGyaiNpY3fstVBDetyks/ciXihpveFEdLKJEvaA=; b=juC7TEtOC5FttiH9ujcnTE0gudLfMICehO5xRCknXGVhUHeJ4TNMfo67Tf9UBdvJfg UwU7UlZw6cbdj91/ivVcolVY+YpOqUSpG3ZK5+41daPjcgIuvBfcEBbpxQJd38cee3fy siljpzhlQOaPVP9IqXHy/DxHcKzqF9WOOW5gsXFQTezjanfcDtEnWS9RQlhTAkj/ij/F 02JVhzJs26Mc8Uas5f+sIw9PhZlb3loOxthKAWnFYpm8jEUwCkZiFVhu7FJTKG99unIv RH/8z7T0jcx9YE3ZPR5RJv7JjFiCQ/ASuIU+A/EC0/vnz7jsSwMP7FtXD4c7ZU7TzCvL 9c6Q== ARC-Authentication-Results: i=1; mx.google.com; spf=pass (google.com: best guess record for domain of linux-kernel-owner@vger.kernel.org designates 209.132.180.67 as permitted sender) smtp.mailfrom=linux-kernel-owner@vger.kernel.org Return-Path: Received: from vger.kernel.org (vger.kernel.org. [209.132.180.67]) by mx.google.com with ESMTP id q15si17699296pgg.570.2019.02.28.04.17.06; Thu, 28 Feb 2019 04:17:22 -0800 (PST) Received-SPF: pass (google.com: best guess record for domain of linux-kernel-owner@vger.kernel.org designates 209.132.180.67 as permitted sender) client-ip=209.132.180.67; Authentication-Results: mx.google.com; spf=pass (google.com: best guess record for domain of linux-kernel-owner@vger.kernel.org designates 209.132.180.67 as permitted sender) smtp.mailfrom=linux-kernel-owner@vger.kernel.org Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1732531AbfB1L17 (ORCPT + 99 others); Thu, 28 Feb 2019 06:27:59 -0500 Received: from outbound-smtp11.blacknight.com ([46.22.139.106]:38624 "EHLO outbound-smtp11.blacknight.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1726027AbfB1L16 (ORCPT ); Thu, 28 Feb 2019 06:27:58 -0500 Received: from mail.blacknight.com (pemlinmail02.blacknight.ie [81.17.254.11]) by outbound-smtp11.blacknight.com (Postfix) with ESMTPS id 01E471C1FEF for ; Thu, 28 Feb 2019 11:27:56 +0000 (GMT) Received: (qmail 30911 invoked from network); 28 Feb 2019 11:27:55 -0000 Received: from unknown (HELO techsingularity.net) (mgorman@techsingularity.net@[37.228.225.79]) by 81.17.254.9 with ESMTPSA (AES256-SHA encrypted, authenticated); 28 Feb 2019 11:27:55 -0000 Date: Thu, 28 Feb 2019 11:27:54 +0000 From: Mel Gorman To: Andrey Ryabinin Cc: Andrew Morton , Johannes Weiner , Vlastimil Babka , Rik van Riel , linux-mm@kvack.org, linux-kernel@vger.kernel.org, Michal Hocko Subject: Re: [PATCH v2 1/4] mm/workingset: remove unused @mapping argument in workingset_eviction() Message-ID: <20190228112754.GD9565@techsingularity.net> References: <20190228083329.31892-1-aryabinin@virtuozzo.com> MIME-Version: 1.0 Content-Type: text/plain; charset=iso-8859-15 Content-Disposition: inline In-Reply-To: <20190228083329.31892-1-aryabinin@virtuozzo.com> User-Agent: Mutt/1.10.1 (2018-07-13) Sender: linux-kernel-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Thu, Feb 28, 2019 at 11:33:26AM +0300, Andrey Ryabinin wrote: > workingset_eviction() doesn't use and never did use the @mapping argument. > Remove it. > > Signed-off-by: Andrey Ryabinin > Acked-by: Johannes Weiner > Acked-by: Rik van Riel > Cc: Michal Hocko > Cc: Vlastimil Babka > Cc: Mel Gorman Acked-by: Mel Gorman -- Mel Gorman SUSE Labs