Message ID | 20190214002249.31866-1-dsahern@kernel.org |
---|---|
Headers | show
Return-Path: <netdev-owner@vger.kernel.org> X-Original-To: patchwork-incoming-netdev@ozlabs.org Delivered-To: patchwork-incoming-netdev@ozlabs.org Authentication-Results: ozlabs.org; spf=none (mailfrom) smtp.mailfrom=vger.kernel.org (client-ip=209.132.180.67; helo=vger.kernel.org; envelope-from=netdev-owner@vger.kernel.org; receiver=<UNKNOWN>) Authentication-Results: ozlabs.org; dmarc=pass (p=none dis=none) header.from=kernel.org Authentication-Results: ozlabs.org; dkim=pass (1024-bit key; unprotected) header.d=kernel.org header.i=@kernel.org header.b="YGrxyHeS"; dkim-atps=neutral Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by ozlabs.org (Postfix) with ESMTP id 440HD02w51z9sMx for <patchwork-incoming-netdev@ozlabs.org>; Thu, 14 Feb 2019 11:22:56 +1100 (AEDT) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S2388068AbfBNAWv (ORCPT <rfc822;patchwork-incoming-netdev@ozlabs.org>); Wed, 13 Feb 2019 19:22:51 -0500 Received: from mail.kernel.org ([198.145.29.99]:44072 "EHLO mail.kernel.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1726030AbfBNAWv (ORCPT <rfc822;netdev@vger.kernel.org>); Wed, 13 Feb 2019 19:22:51 -0500 Received: from kenny.it.cumulusnetworks.com. (fw.cumulusnetworks.com [216.129.126.126]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by mail.kernel.org (Postfix) with ESMTPSA id 87797222A1; Thu, 14 Feb 2019 00:22:50 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=default; t=1550103770; bh=FG+6znBJuel/+rLdBwHzb7brzMEGyo36Ocq3E9HlFs8=; h=From:To:Cc:Subject:Date:From; b=YGrxyHeS66VwNYXtvhOXv81+0gjHhlB7f6msuGwtafDOyZ10Cwcx6eI64tJ6CdnmN Gb+Pm/7sgma626aXXBG2brV3pM0hrIcYRoGd/XCSbmQ1xuttSP6JOQyKYug5v80EuG BEXxdKA8q1lcEpCwNP1wyHwSdYaKXIxuV/XWpkKY= From: David Ahern <dsahern@kernel.org> To: stephen@networkplumber.org Cc: netdev@vger.kernel.org, David Ahern <dsahern@gmail.com> Subject: [PATCH iproute2-next v2 0/3] Improve batch and dump times by caching link lookups Date: Wed, 13 Feb 2019 16:22:46 -0800 Message-Id: <20190214002249.31866-1-dsahern@kernel.org> X-Mailer: git-send-email 2.11.0 Sender: netdev-owner@vger.kernel.org Precedence: bulk List-ID: <netdev.vger.kernel.org> X-Mailing-List: netdev@vger.kernel.org |
Series |
Improve batch and dump times by caching link lookups
|
expand
|
From: David Ahern <dsahern@gmail.com> Many commands convert device names to an index using ll_name_to_index and the reverse from an index to a name using ll_index_to_name. At the moment both of the ll_ functions use the ioctl based helpers from glibc which involves opening socket, calling ioctl and then closing the socket on each device lookup. When using a batch file or dumping large number of routes this means the same device lookups can be done repeatedly adding unnecessary overhead to both operations. This series adds a new function, ll_link_get, to send a netlink based RTM_GETLINK. If successful, the result is cached in idx_head and name_head so future lookups can re-use the entry. iproute2's ll_map functions are updated to use ll_link_get over the glibc functions. The result is a significant speed up in both batch and dumps with negligible overhead if ip is invoked for single operations. The first 2 patches add a means to drop an entry from the cache and updates iplink_modify to use that new function to drop entries on device changes. This forces the cache to re-learn device information if a batch file has a mix of link set operations with other commands - such as adding a route. v2 - changed the second patch to drop cache entry on any link changes - added ll_link_get to index to name conversion improving dumps David Ahern (3): ll_map: Add function to remove link cache entry by index ip link: Drop cache entry on any changes Improve batch and dump times by caching link lookups include/ll_map.h | 1 + ip/iplink.c | 3 +++ lib/ll_map.c | 66 +++++++++++++++++++++++++++++++++++++++++++++++++++++++- 3 files changed, 69 insertions(+), 1 deletion(-)