From patchwork Tue Jun 7 17:32:28 2011 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Jim Rees X-Patchwork-Id: 858462 Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by demeter1.kernel.org (8.14.4/8.14.3) with ESMTP id p57HW4Ed020963 for ; Tue, 7 Jun 2011 17:32:31 GMT Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1757385Ab1FGRca (ORCPT ); Tue, 7 Jun 2011 13:32:30 -0400 Received: from int-mailstore01.merit.edu ([207.75.116.232]:51487 "EHLO int-mailstore01.merit.edu" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1755451Ab1FGRca (ORCPT ); Tue, 7 Jun 2011 13:32:30 -0400 Received: from localhost (localhost.localdomain [127.0.0.1]) by int-mailstore01.merit.edu (Postfix) with ESMTP id B9EE830852CE; Tue, 7 Jun 2011 13:32:29 -0400 (EDT) X-Virus-Scanned: amavisd-new at int-mailstore01.merit.edu Received: from int-mailstore01.merit.edu ([127.0.0.1]) by localhost (int-mailstore01.merit.edu [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 5X0dzMsb4W1N; Tue, 7 Jun 2011 13:32:29 -0400 (EDT) Received: from merit.edu (host-17.subnet-17.med.umich.edu [141.214.17.17]) by int-mailstore01.merit.edu (Postfix) with ESMTPSA id DEEEE3055B74; Tue, 7 Jun 2011 13:32:28 -0400 (EDT) Date: Tue, 7 Jun 2011 13:32:28 -0400 From: Jim Rees To: Benny Halevy Cc: linux-nfs@vger.kernel.org, peter honeyman Subject: [PATCH 54/88] SQUASHME: pnfsblock: get rid of threshold policy ops Message-ID: <0a4015a24085c71684596103e1329799183262c3.1307464382.git.rees@umich.edu> References: MIME-Version: 1.0 Content-Disposition: inline In-Reply-To: Sender: linux-nfs-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-nfs@vger.kernel.org X-Greylist: IP, sender and recipient auto-whitelisted, not delayed by milter-greylist-4.2.6 (demeter1.kernel.org [140.211.167.41]); Tue, 07 Jun 2011 17:32:37 +0000 (UTC) From: Benny Halevy Signed-off-by: Benny Halevy --- fs/nfs/blocklayout/blocklayout.c | 9 --------- 1 files changed, 0 insertions(+), 9 deletions(-) diff --git a/fs/nfs/blocklayout/blocklayout.c b/fs/nfs/blocklayout/blocklayout.c index 688984f..66044d4 100644 --- a/fs/nfs/blocklayout/blocklayout.c +++ b/fs/nfs/blocklayout/blocklayout.c @@ -1105,13 +1105,6 @@ bl_get_stripesize(struct pnfs_layout_type *lo) return 0; } -static ssize_t -bl_get_io_threshold(struct pnfs_layout_type *lo, struct inode *inode) -{ - dprintk("%s enter\n", __func__); - return 0; -} - /* This is called by nfs_can_coalesce_requests via nfs_pageio_do_add_request. * Should return False if there is a reason requests can not be coalesced, * otherwise, should default to returning True. @@ -1162,8 +1155,6 @@ static struct layoutdriver_io_operations blocklayout_io_operations = { static struct layoutdriver_policy_operations blocklayout_policy_operations = { .get_stripesize = bl_get_stripesize, - .get_read_threshold = bl_get_io_threshold, - .get_write_threshold = bl_get_io_threshold, .pg_test = bl_pg_test, .do_flush = bl_do_flush, };