From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1162007AbcE3WQO (ORCPT ); Mon, 30 May 2016 18:16:14 -0400 Received: from mail-pf0-f169.google.com ([209.85.192.169]:33876 "EHLO mail-pf0-f169.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1161691AbcE3WQL (ORCPT ); Mon, 30 May 2016 18:16:11 -0400 Date: Mon, 30 May 2016 15:16:06 -0700 From: Eduardo Valentin To: Rui Zhang Cc: Linux PM , LKML Subject: Re: [PATCHv2 00/40] Message-ID: <20160530221605.GA14174@localhost.localdomain> References: <1464643679-2733-1-git-send-email-edubezval@gmail.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <1464643679-2733-1-git-send-email-edubezval@gmail.com> User-Agent: Mutt/1.5.23 (2014-03-12) Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Mon, May 30, 2016 at 02:27:19PM -0700, Eduardo Valentin wrote: > Folks, > > This is V2 of a patch series to improve thermal core. The idea > here is to reorganize the code and improve the way we > handle sysfs entries. > > The change in behavior is that now, thermal zones with empty > .type will not be allowed to be registered. Also, the way > we handle scanf's return code is now checking for > number of successful inputs. > > After this series, thermal core is split into the following files: > - thermal_sysfs.c: contains the functions handling the sysfs nodes > - thermal_helpers.c: groups functions that do not need to touch thermal > core internal data structures, such as internal lists, and list locks. > - thermal_core.c: functions to handle the lifecycle of the subsystem, > its governors, cooling devices, thermal zone devices, and their > interactions. > > I don't expect any impact on userspace. > > Please give your inputs. > > V1->V2: Please ignore this one. I am sending V3 now.