Received: by 2002:ac0:b08d:0:0:0:0:0 with SMTP id l13csp1781143imc; Fri, 22 Feb 2019 11:03:21 -0800 (PST) X-Google-Smtp-Source: AHgI3Ia0hGJECOoMOXHedd2BYMaRqFCpZRTL0t+LI4YLFDhukmy+9YiBY3TLtn2VaYnBTGOVhKGA X-Received: by 2002:a63:d413:: with SMTP id a19mr5310165pgh.199.1550862201893; Fri, 22 Feb 2019 11:03:21 -0800 (PST) ARC-Seal: i=1; a=rsa-sha256; t=1550862201; cv=none; d=google.com; s=arc-20160816; b=C49RuMAOJpJ0B9SjbQTSL7IQMtsJbcIcVrpqmpCIsN8sh5Kl70FLD+L+6yxmNlY5dZ GTcM1mr4+lT5gnbgNiLl5IaPlVk4rRu+vfzo2TuncBVAcA1ObO2vE4epwkewxQBhFglb 8DNlHLFczCXuPG9HZsp7H61gxjxX1Mkkzjii+PD4LIgosM/0QV6bRreJkVDc3IuPubxq 6fGIiXZKdhxYQm84+fdDmGQatqrwNThIwNYTm0ArYzNonHj6JMrUeP6KDElyVf6k+LZt +iZzWQSvlP41n9Mw1OzXs0VOGseNBAQxEoxVG75jO4MUyhhyqLh5e6kXUrjqIbvMbCgo +L1Q== ARC-Message-Signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=arc-20160816; h=list-id:precedence:sender:mime-version:references:in-reply-to:date :cc:to:from:subject:message-id; bh=HSo3UdpSnfoAVZZuWug+WgcMHS0Y9bFYfKiKNJXQ95I=; b=ZAaEKml4+MFTi18Ax98est0c/zAEYzJtrzoyzC2vxtiTgDlFVDjdPucQI9xFSdDjPT XL1RcqRBrgiNaH2KdwCQ82IhIXEyodYlL/FFvyWuVIB641P5wfT3pNucV9s8csa7+A4i GEB3uUgkpFHiUCX13+J164M2JoSnH4LzuF+xu4y0aAB7+UC5JNevUeP0L0l/y0Un+aF4 hUzxOzR9FKu9gAY37Or5OBQyEu2YPgSd/1NAbsKQh5gjUY3/r+cXG9i9g2JXogZk4x4B yCY+lqlQZQNHnMwbltl3N+HHW7BDbsiqCQM2QQiYLEmNmJ9atIvFGsF6emjLCGQf7V3J TkBg== 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 bf7si1929556plb.33.2019.02.22.11.03.06; Fri, 22 Feb 2019 11:03:21 -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 S1726617AbfBVTCD (ORCPT + 99 others); Fri, 22 Feb 2019 14:02:03 -0500 Received: from shelob.surriel.com ([96.67.55.147]:56540 "EHLO shelob.surriel.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1725990AbfBVTCC (ORCPT ); Fri, 22 Feb 2019 14:02:02 -0500 Received: from imladris.surriel.com ([96.67.55.152]) by shelob.surriel.com with esmtpsa (TLSv1.2:ECDHE-RSA-AES256-GCM-SHA384:256) (Exim 4.91) (envelope-from ) id 1gxG5B-0005nh-IE; Fri, 22 Feb 2019 14:02:01 -0500 Message-ID: <855102f6f7735ea71964fb14db00cf9552530cbf.camel@surriel.com> Subject: Re: [PATCH 1/5] mm/workingset: remove unused @mapping argument in workingset_eviction() From: Rik van Riel To: Andrey Ryabinin , Andrew Morton Cc: linux-mm@kvack.org, linux-kernel@vger.kernel.org, Johannes Weiner , Michal Hocko , Vlastimil Babka , Mel Gorman Date: Fri, 22 Feb 2019 14:02:01 -0500 In-Reply-To: <20190222174337.26390-1-aryabinin@virtuozzo.com> References: <20190222174337.26390-1-aryabinin@virtuozzo.com> Content-Type: multipart/signed; micalg="pgp-sha256"; protocol="application/pgp-signature"; boundary="=-GYX4p7ewd54zuNzzNR82" X-Mailer: Evolution 3.28.5 (3.28.5-1.fc28) Mime-Version: 1.0 Sender: linux-kernel-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org --=-GYX4p7ewd54zuNzzNR82 Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable On Fri, 2019-02-22 at 20:43 +0300, Andrey Ryabinin wrote: > workingset_eviction() doesn't use and never did use the @mapping > argument. > Remove it. >=20 > Signed-off-by: Andrey Ryabinin > Cc: Johannes Weiner > Cc: Michal Hocko > Cc: Vlastimil Babka > Cc: Rik van Riel > Cc: Mel Gorman Acked-by: Rik van Riel --=20 All Rights Reversed. --=-GYX4p7ewd54zuNzzNR82 Content-Type: application/pgp-signature; name="signature.asc" Content-Description: This is a digitally signed message part Content-Transfer-Encoding: 7bit -----BEGIN PGP SIGNATURE----- iQEzBAABCAAdFiEEKR73pCCtJ5Xj3yADznnekoTE3oMFAlxwRykACgkQznnekoTE 3oPODggAjpaOQ1aAPR8IS2tINpinSdPLB7xQ4tCR2+VEBqToEdIz6fcuRFb3cAJL ZIflsoTCDvpQqFzkv1pUsf5fQsuMLbTiEgc/KvxH6s7ysIx6sbeXrfQIYalYHwGT yU4TzK7FKJjGHX6LEjDoUSVKNzklPQWLFzqRuWvMj1P64DWyQhDAZUo0a6mJ2cEc T2TchsJvN0X62vJCgWTcZ+sbOqCopA4LRdOzcc0TVfba3h5nN292PLMVgneq8stn P9xi8Kwg2VtBqLOv1S4gy4Py1X8r5dXlk1YpCw1Iy+013XFgGBwhE5YKUOJDdUnR 9gIvwU3gyoJUvRszdPsYeyGzMuQqOw== =cbTd -----END PGP SIGNATURE----- --=-GYX4p7ewd54zuNzzNR82--