From patchwork Fri Nov 15 16:55:34 2019 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Kamal Mostafa X-Patchwork-Id: 1195764 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Authentication-Results: ozlabs.org; spf=none (no SPF record) smtp.mailfrom=lists.ubuntu.com (client-ip=91.189.94.19; helo=huckleberry.canonical.com; envelope-from=kernel-team-bounces@lists.ubuntu.com; receiver=) Authentication-Results: ozlabs.org; dmarc=fail (p=none dis=none) header.from=canonical.com Received: from huckleberry.canonical.com (huckleberry.canonical.com [91.189.94.19]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by ozlabs.org (Postfix) with ESMTPS id 47F4H611ZTz9sP3; Sat, 16 Nov 2019 03:55:46 +1100 (AEDT) Received: from localhost ([127.0.0.1] helo=huckleberry.canonical.com) by huckleberry.canonical.com with esmtp (Exim 4.86_2) (envelope-from ) id 1iVeso-0000H7-MR; Fri, 15 Nov 2019 16:55:42 +0000 Received: from youngberry.canonical.com ([91.189.89.112]) by huckleberry.canonical.com with esmtps (TLS1.2:ECDHE_RSA_AES_128_GCM_SHA256:128) (Exim 4.86_2) (envelope-from ) id 1iVesl-0000Et-49 for kernel-team@lists.ubuntu.com; Fri, 15 Nov 2019 16:55:39 +0000 Received: from 1.general.kamal.us.vpn ([10.172.68.52] helo=fourier) by youngberry.canonical.com with esmtpsa (TLS1.2:ECDHE_RSA_AES_128_GCM_SHA256:128) (Exim 4.86_2) (envelope-from ) id 1iVesk-0000CQ-Qy for kernel-team@lists.ubuntu.com; Fri, 15 Nov 2019 16:55:38 +0000 Received: from kamal by fourier with local (Exim 4.90_1) (envelope-from ) id 1iVesi-0003H6-PW for kernel-team@lists.ubuntu.com; Fri, 15 Nov 2019 08:55:36 -0800 From: Kamal Mostafa To: kernel-team@lists.ubuntu.com Subject: [SRU][Xenial][PULL] import DIMLIB (lib/dim/) Date: Fri, 15 Nov 2019 08:55:34 -0800 Message-Id: <20191115165534.12500-4-kamal@canonical.com> X-Mailer: git-send-email 2.17.1 In-Reply-To: <20191115165534.12500-1-kamal@canonical.com> References: <20191115165534.12500-1-kamal@canonical.com> X-BeenThere: kernel-team@lists.ubuntu.com X-Mailman-Version: 2.1.20 Precedence: list List-Id: Kernel team discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , MIME-Version: 1.0 Errors-To: kernel-team-bounces@lists.ubuntu.com Sender: "kernel-team" BugLink: https://bugs.launchpad.net/bugs/1852637 ----- The following changes since commit 6a3433948fdca4055ca7d95741d1582d693cd58d: UBUNTU: Ubuntu-4.4.0-170.199 (2019-11-13 11:18:49 -0800) are available in the Git repository at: git://git.launchpad.net/~kamalmostafa/ubuntu/+source/linux/+git/xenial dimlib for you to fetch changes up to 0f1666b6a8ef0fb60ec7c89fbf1b9f6cbb4abae4: UBUNTU: SAUCE: linux/dim: avoid library object filename clash (2019-11-14 10:06:20 -0800) ---------------------------------------------------------------- Chris Wilson (1): include/linux/bitops.h: introduce BITS_PER_TYPE Kamal Mostafa (3): UBUNTU: [Config] enable DIMLIB UBUNTU: linux/dim: import DIMLIB (lib/dim/) UBUNTU: SAUCE: linux/dim: avoid library object filename clash Masahiro Yamada (1): linux/kernel.h: move DIV_ROUND_DOWN_ULL() macro debian.master/config/config.common.ubuntu | 1 + include/linux/bitops.h | 3 +- include/linux/dim.h | 346 ++++++++++++++++++++++++++++++ include/linux/kernel.h | 7 +- lib/Kconfig | 8 + lib/Makefile | 1 + lib/dim/Makefile | 7 + lib/dim/dim.c | 83 +++++++ lib/dim/net_dim.c | 246 +++++++++++++++++++++ lib/dim/rdma_dim.c | 108 ++++++++++ sound/soc/codecs/pcm512x.c | 3 - 11 files changed, 807 insertions(+), 6 deletions(-) create mode 100644 include/linux/dim.h create mode 100644 lib/dim/Makefile create mode 100644 lib/dim/dim.c create mode 100644 lib/dim/net_dim.c create mode 100644 lib/dim/rdma_dim.c