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 X-Spam-Level: X-Spam-Status: No, score=-1.0 required=3.0 tests=DKIMWL_WL_HIGH,DKIM_SIGNED, DKIM_VALID,HEADER_FROM_DIFFERENT_DOMAINS,MAILING_LIST_MULTI,SPF_HELO_NONE, SPF_PASS,URIBL_BLOCKED autolearn=no autolearn_force=no version=3.4.0 Received: from mail.kernel.org (mail.kernel.org [198.145.29.99]) by smtp.lore.kernel.org (Postfix) with ESMTP id 38B87C433E0 for ; Thu, 2 Jul 2020 12:44:38 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by mail.kernel.org (Postfix) with ESMTP id 16C8520899 for ; Thu, 2 Jul 2020 12:44:38 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=default; t=1593693878; bh=z4WEJ5Hsxfu7qusUUGh6nlSscD0yPifHc1h20biJqGk=; h=Date:From:To:Cc:Subject:References:In-Reply-To:List-ID:From; b=z6dgV5FdXvCz3qD5R2PG09F/mK30eSspICl6Alfc9RY0ujVaNU2od7FxssdhCsI1i uxdmgFC5dNnchabU/whcG2rokdHYRfK+zVEzwIJijlzyFDkTKihYEB7YQjTDPFVQy7 VMS+Wux9+YCvHNqrA0OmmOQqykvwa+ZDAO/ItB9g= Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1729017AbgGBMoe (ORCPT ); Thu, 2 Jul 2020 08:44:34 -0400 Received: from mail.kernel.org ([198.145.29.99]:48638 "EHLO mail.kernel.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1728808AbgGBMoe (ORCPT ); Thu, 2 Jul 2020 08:44:34 -0400 Received: from localhost (83-86-89-107.cable.dynamic.v4.ziggo.nl [83.86.89.107]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mail.kernel.org (Postfix) with ESMTPSA id 4009720885; Thu, 2 Jul 2020 12:44:33 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=default; t=1593693873; bh=z4WEJ5Hsxfu7qusUUGh6nlSscD0yPifHc1h20biJqGk=; h=Date:From:To:Cc:Subject:References:In-Reply-To:From; b=JIxIoN4C7RW3jqu40wTnpeGXh0QwXkvEQOm8JJcXv7ql7bYh0e9VzsinHisKnOxEk TAwwwmT8pzUqWsYX3IBxAWOYDUWfTrrx1H/z0pGK+fEBFQK8NPgfObDhs20MJqjKmA s5Wcuj1B4iAZgSg9pHQUcVWB5OLia2U9Ij9rg44A= Date: Thu, 2 Jul 2020 14:44:37 +0200 From: Greg Kroah-Hartman To: Bartosz Golaszewski Cc: Jonathan Corbet , "Rafael J . Wysocki" , Guenter Roeck , Jean Delvare , linux-doc@vger.kernel.org, linux-kernel@vger.kernel.org, linux-hwmon@vger.kernel.org, Bartosz Golaszewski Subject: Re: [PATCH v2 0/6] devres: provide and use devm_krealloc() Message-ID: <20200702124437.GC1882489@kroah.com> References: <20200629065008.27620-1-brgl@bgdev.pl> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20200629065008.27620-1-brgl@bgdev.pl> Sender: linux-hwmon-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-hwmon@vger.kernel.org On Mon, Jun 29, 2020 at 08:50:02AM +0200, Bartosz Golaszewski wrote: > From: Bartosz Golaszewski > > Regular krealloc() obviously can't work with managed memory. This series > implements devm_krealloc() and adds the first user with hope that this > helper will be adopted by other drivers currently using non-managed > krealloc(). > > Some additional changes to the code modified by main patches are included. I've applied the first 4, the other two I had questions on. thanks, greg k-h