linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [tip:locking/core 12/12] drivers/gpu/drm/msm/msm_gem_shrinker.c:23:2: warning: 'mutex_trylock_recursive' is deprecated
@ 2016-11-16 10:20 kbuild test robot
  0 siblings, 0 replies; only message in thread
From: kbuild test robot @ 2016-11-16 10:20 UTC (permalink / raw)
  To: Peter Zijlstra; +Cc: kbuild-all, linux-kernel, tipbuild, Ingo Molnar

[-- Attachment #1: Type: text/plain, Size: 2499 bytes --]

tree:   https://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git locking/core
head:   0f5225b024d4bffd682aab008c35862e8fdc1865
commit: 0f5225b024d4bffd682aab008c35862e8fdc1865 [12/12] locking/mutex, drm: Introduce mutex_trylock_recursive()
config: arm64-defconfig (attached as .config)
compiler: aarch64-linux-gnu-gcc (Debian 6.1.1-9) 6.1.1 20160705
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
        git checkout 0f5225b024d4bffd682aab008c35862e8fdc1865
        # save the attached .config to linux build tree
        make.cross ARCH=arm64 

All warnings (new ones prefixed by >>):

   drivers/gpu/drm/msm/msm_gem_shrinker.c: In function 'msm_gem_shrinker_lock':
>> drivers/gpu/drm/msm/msm_gem_shrinker.c:23:2: warning: 'mutex_trylock_recursive' is deprecated [-Wdeprecated-declarations]
     switch (mutex_trylock_recursive(&dev->struct_mutex)) {
     ^~~~~~
   In file included from include/linux/notifier.h:13:0,
                    from include/linux/clk.h:17,
                    from drivers/gpu/drm/msm/msm_drv.h:22,
                    from drivers/gpu/drm/msm/msm_gem_shrinker.c:18:
   include/linux/mutex.h:215:1: note: declared here
    mutex_trylock_recursive(struct mutex *lock)
    ^~~~~~~~~~~~~~~~~~~~~~~

vim +/mutex_trylock_recursive +23 drivers/gpu/drm/msm/msm_gem_shrinker.c

     7	 * the Free Software Foundation.
     8	 *
     9	 * This program is distributed in the hope that it will be useful, but WITHOUT
    10	 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
    11	 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License for
    12	 * more details.
    13	 *
    14	 * You should have received a copy of the GNU General Public License along with
    15	 * this program.  If not, see <http://www.gnu.org/licenses/>.
    16	 */
    17	
    18	#include "msm_drv.h"
    19	#include "msm_gem.h"
    20	
    21	static bool msm_gem_shrinker_lock(struct drm_device *dev, bool *unlock)
    22	{
  > 23		switch (mutex_trylock_recursive(&dev->struct_mutex)) {
    24		case MUTEX_TRYLOCK_FAILED:
    25			return false;
    26	
    27		case MUTEX_TRYLOCK_SUCCESS:
    28			*unlock = true;
    29			return true;
    30	
    31		case MUTEX_TRYLOCK_RECURSIVE:

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

[-- Attachment #2: .config.gz --]
[-- Type: application/gzip, Size: 31923 bytes --]

^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2016-11-16 10:14 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2016-11-16 10:20 [tip:locking/core 12/12] drivers/gpu/drm/msm/msm_gem_shrinker.c:23:2: warning: 'mutex_trylock_recursive' is deprecated kbuild test robot

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).