From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org Received: from bombadil.infradead.org (bombadil.infradead.org [198.137.202.133]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.lore.kernel.org (Postfix) with ESMTPS id EE89ECF3943 for ; Thu, 19 Sep 2024 14:28:07 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=lists.infradead.org; s=bombadil.20210309; h=Sender:List-Subscribe:List-Help :List-Post:List-Archive:List-Unsubscribe:List-Id:Content-Transfer-Encoding: Content-Type:In-Reply-To:From:References:Cc:To:Subject:MIME-Version:Date: Message-ID:Reply-To:Content-ID:Content-Description:Resent-Date:Resent-From: Resent-Sender:Resent-To:Resent-Cc:Resent-Message-ID:List-Owner; bh=L+JLxE+ZRz35SpYIsPMny0OwchqQbo38CbWUwYQL1DE=; b=ZgeA6kc+Nnmpy5U9Uy+N6PcFls EO3lyGY50gSPR4nNdLeyXq9Gj13fLAYE4whoCYN58/rlr35hbq2dVbyBaHeXDh9wVZrfPq40iee+j r8zShpClY1iMGtGtIloYn58pRK5xjD7P/8E5XtGVZDu9HB6ys2TjzWHJ1B6RONxIuGBTuMtpDfWjc 5BUp3Bmlu3PrZ2p3jhMiIx4K3L9vw4Bldqd6Og7ciYCunoIuEedQRbPoHeFPiUODiDw+iyQ030B0i Ai0LvfqRc6jNeiGFUucSsfJAa/Gt5h18CDRDu9ah4f6lLsW3fkeOZn8FpIcgQAUawsB37M3O/SANd nvYXglrw==; Received: from localhost ([::1] helo=bombadil.infradead.org) by bombadil.infradead.org with esmtp (Exim 4.98 #2 (Red Hat Linux)) id 1srI8S-0000000ASC9-1mWD; Thu, 19 Sep 2024 14:27:56 +0000 Received: from perceval.ideasonboard.com ([213.167.242.64]) by bombadil.infradead.org with esmtps (Exim 4.98 #2 (Red Hat Linux)) id 1srI7K-0000000AS6F-3yds; Thu, 19 Sep 2024 14:26:48 +0000 Received: from [IPV6:2405:201:2015:f873:55d7:c02e:b2eb:ee3f] (unknown [IPv6:2405:201:2015:f873:55d7:c02e:b2eb:ee3f]) by perceval.ideasonboard.com (Postfix) with ESMTPSA id 21BCE220; Thu, 19 Sep 2024 16:25:20 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=ideasonboard.com; s=mail; t=1726755922; bh=s1FeyuPuKAIkLxdmr7dFkDqlUjqdMhFEPRBAKufHSN4=; h=Date:Subject:To:Cc:References:From:In-Reply-To:From; b=bVQnp6MN+PMKmgP6Duaony/7IgS93qcalJy/OluC/T6k9ONrcrNZhqF7C/vIvare3 51+IBI2df3qDIyhFrpF82Z0xOm2KzL3cL3L7xzcOhUH3d37qpioaNHaUHEgXOwYFzr 30Mf0S7Ml2jBmX+dgIN4Hb8jrGjeZVcjlTKupAXI= Message-ID: <19b477a1-635c-4197-b63a-14d10d0d0a34@ideasonboard.com> Date: Thu, 19 Sep 2024 19:56:40 +0530 MIME-Version: 1.0 User-Agent: Mozilla Thunderbird Subject: Re: [PATCH 0/3] staging: vchiq_core: Consolidate bulk xfer helper To: Greg Kroah-Hartman , Broadcom internal kernel review list Cc: linux-rpi-kernel@lists.infradead.org, linux-arm-kernel@lists.infradead.org, linux-staging@lists.linux.dev, linux-kernel@vger.kernel.org, Kieran Bingham , Stefan Wahren References: <20240919142130.1331495-1-umang.jain@ideasonboard.com> Content-Language: en-US From: Umang Jain In-Reply-To: <20240919142130.1331495-1-umang.jain@ideasonboard.com> Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 7bit X-CRM114-Version: 20100106-BlameMichelson ( TRE 0.8.0 (BSD) ) MR-646709E3 X-CRM114-CacheID: sfid-20240919_072647_160116_1B43B98E X-CRM114-Status: GOOD ( 11.39 ) X-BeenThere: linux-arm-kernel@lists.infradead.org X-Mailman-Version: 2.1.34 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: "linux-arm-kernel" Errors-To: linux-arm-kernel-bounces+linux-arm-kernel=archiver.kernel.org@lists.infradead.org Hi, forgot to mention, series to is built and tested on top of "[PATCH 0/6] staging: vchiq_core: bulk xfer killable() completions" https://lore.kernel.org/linux-staging/20240918163100.870596-1-umang.jain@ideasonboard.com/T/#t On 19/09/24 7:51 pm, Umang Jain wrote: > Few functions were identified were their declaration, definition > and usage were spread (incorrectly) across vchiq_core and vchiq_arm. > > These are being consolidated into vchiq_core in this series. > Please look at individual patches for details. > > 2/3 is in particular a big one. The code is just a move, but > seems big - as it was diffcult to split it into smaller, compilable > hunks of individual patches. > > Umang Jain (3): > staging: vchiq_core: Move remote_event_signal() vchiq_core > staging: vchiq_core: Move bulk data functions in vchiq_core > staging: vchiq_core: Drop vchiq_pagelist.h > > .../interface/vchiq_arm/vchiq_arm.c | 356 ------------------ > .../interface/vchiq_arm/vchiq_core.c | 350 +++++++++++++++++ > .../interface/vchiq_arm/vchiq_core.h | 30 +- > .../interface/vchiq_arm/vchiq_pagelist.h | 21 -- > 4 files changed, 373 insertions(+), 384 deletions(-) > delete mode 100644 drivers/staging/vc04_services/interface/vchiq_arm/vchiq_pagelist.h >