lists.openwall.net   lists  /  announce  owl-users  owl-dev  john-users  john-dev  passwdqc-users  yescrypt  popa3d-users  /  oss-security  kernel-hardening  musl  sabotage  tlsify  passwords  /  crypt-dev  xvendor  /  Bugtraq  Full-Disclosure  linux-kernel  linux-netdev  linux-ext4  linux-hardening  linux-cve-announce  PHC 
Open Source and information security mailing list archives
 
Hash Suite: Windows password security audit tool. GUI, reports in PDF.
[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Date:	Thu, 3 Mar 2016 15:30:04 +0800
From:	kbuild test robot <lkp@...el.com>
To:	Wei Ni <wni@...dia.com>
Cc:	kbuild-all@...org, rui.zhang@...el.com, edubezval@...il.com,
	linux-kernel@...r.kernel.org, Wei Ni <wni@...dia.com>
Subject: Re: [PATCH] thermal: consistently use int for trip temp

Hi Wei,

[auto build test WARNING on thermal/next]
[also build test WARNING on v4.5-rc6 next-20160302]
[if your patch is applied to the wrong git tree, please drop us a note to help improving the system]

url:    https://github.com/0day-ci/linux/commits/Wei-Ni/thermal-consistently-use-int-for-trip-temp/20160303-151648
base:   https://git.kernel.org/pub/scm/linux/kernel/git/rzhang/linux.git next
config: sparc64-allyesconfig (attached as .config)
reproduce:
        wget https://git.kernel.org/cgit/linux/kernel/git/wfg/lkp-tests.git/plain/sbin/make.cross -O ~/bin/make.cross
        chmod +x ~/bin/make.cross
        # save the attached .config to linux build tree
        make.cross ARCH=sparc64 

All warnings (new ones prefixed by >>):

   drivers/thermal/thermal_core.c: In function 'trip_point_temp_store':
>> drivers/thermal/thermal_core.c:695:6: warning: passing argument 3 of 'kstrtoul' from incompatible pointer type
     if (kstrtoul(buf, 10, &temperature))
         ^
   In file included from include/linux/list.h:8:0,
                    from include/linux/module.h:9,
                    from drivers/thermal/thermal_core.c:28:
   include/linux/kernel.h:291:32: note: expected 'long unsigned int *' but argument is of type 'int *'
    static inline int __must_check kstrtoul(const char *s, unsigned int base, unsigned long *res)
                                   ^
   drivers/thermal/thermal_core.c: In function 'emul_temp_store':
   drivers/thermal/thermal_core.c:900:6: warning: passing argument 3 of 'kstrtoul' from incompatible pointer type
     if (kstrtoul(buf, 10, &temperature))
         ^
   In file included from include/linux/list.h:8:0,
                    from include/linux/module.h:9,
                    from drivers/thermal/thermal_core.c:28:
   include/linux/kernel.h:291:32: note: expected 'long unsigned int *' but argument is of type 'int *'
    static inline int __must_check kstrtoul(const char *s, unsigned int base, unsigned long *res)
                                   ^

vim +/kstrtoul +695 drivers/thermal/thermal_core.c

203d3d4a drivers/thermal/thermal.c      Zhang Rui         2008-01-17  679  }
203d3d4a drivers/thermal/thermal.c      Zhang Rui         2008-01-17  680  
203d3d4a drivers/thermal/thermal.c      Zhang Rui         2008-01-17  681  static ssize_t
c56f5c03 drivers/thermal/thermal_sys.c  Durgadoss R       2012-07-25  682  trip_point_temp_store(struct device *dev, struct device_attribute *attr,
c56f5c03 drivers/thermal/thermal_sys.c  Durgadoss R       2012-07-25  683  		     const char *buf, size_t count)
c56f5c03 drivers/thermal/thermal_sys.c  Durgadoss R       2012-07-25  684  {
c56f5c03 drivers/thermal/thermal_sys.c  Durgadoss R       2012-07-25  685  	struct thermal_zone_device *tz = to_thermal_zone(dev);
c56f5c03 drivers/thermal/thermal_sys.c  Durgadoss R       2012-07-25  686  	int trip, ret;
1afa53cf drivers/thermal/thermal_core.c Wei Ni            2016-03-03  687  	int temperature;
c56f5c03 drivers/thermal/thermal_sys.c  Durgadoss R       2012-07-25  688  
c56f5c03 drivers/thermal/thermal_sys.c  Durgadoss R       2012-07-25  689  	if (!tz->ops->set_trip_temp)
c56f5c03 drivers/thermal/thermal_sys.c  Durgadoss R       2012-07-25  690  		return -EPERM;
c56f5c03 drivers/thermal/thermal_sys.c  Durgadoss R       2012-07-25  691  
c56f5c03 drivers/thermal/thermal_sys.c  Durgadoss R       2012-07-25  692  	if (!sscanf(attr->attr.name, "trip_point_%d_temp", &trip))
c56f5c03 drivers/thermal/thermal_sys.c  Durgadoss R       2012-07-25  693  		return -EINVAL;
c56f5c03 drivers/thermal/thermal_sys.c  Durgadoss R       2012-07-25  694  
c56f5c03 drivers/thermal/thermal_sys.c  Durgadoss R       2012-07-25 @695  	if (kstrtoul(buf, 10, &temperature))
c56f5c03 drivers/thermal/thermal_sys.c  Durgadoss R       2012-07-25  696  		return -EINVAL;
c56f5c03 drivers/thermal/thermal_sys.c  Durgadoss R       2012-07-25  697  
c56f5c03 drivers/thermal/thermal_sys.c  Durgadoss R       2012-07-25  698  	ret = tz->ops->set_trip_temp(tz, trip, temperature);
ad74e46c drivers/thermal/thermal_core.c Kuninori Morimoto 2015-12-15  699  	if (ret)
ad74e46c drivers/thermal/thermal_core.c Kuninori Morimoto 2015-12-15  700  		return ret;
c56f5c03 drivers/thermal/thermal_sys.c  Durgadoss R       2012-07-25  701  
ad74e46c drivers/thermal/thermal_core.c Kuninori Morimoto 2015-12-15  702  	thermal_zone_device_update(tz);
ad74e46c drivers/thermal/thermal_core.c Kuninori Morimoto 2015-12-15  703  

:::::: The code at line 695 was first introduced by commit
:::::: c56f5c0342dfee11a1a13d2f5bb7618de5b17590 Thermal: Make Thermal trip points writeable

:::::: TO: Durgadoss R <dugardoss.r@...el.com>
:::::: CC: Len Brown <len.brown@...el.com>

---
0-DAY kernel test infrastructure                Open Source Technology Center
https://lists.01.org/pipermail/kbuild-all                   Intel Corporation

Download attachment ".config.gz" of type "application/octet-stream" (45105 bytes)

Powered by blists - more mailing lists

Powered by Openwall GNU/*/Linux Powered by OpenVZ