From mboxrd@z Thu Jan 1 00:00:00 1970 Received: with ECARTIS (v1.0.0; list linux-mips); Thu, 05 Oct 2017 08:55:03 +0200 (CEST) Received: from smtp.codeaurora.org ([198.145.29.96]:55024 "EHLO smtp.codeaurora.org" rhost-flags-OK-OK-OK-OK) by eddie.linux-mips.org with ESMTP id S23990511AbdJEGyuJLjaa (ORCPT ); Thu, 5 Oct 2017 08:54:50 +0200 Received: by smtp.codeaurora.org (Postfix, from userid 1000) id 8AF4B60719; Thu, 5 Oct 2017 06:54:46 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=codeaurora.org; s=default; t=1507186486; bh=xJYhV6oqcPoHvx8ohN/ikovIfIM5MGorVc75zaxRmbo=; h=From:To:Cc:Subject:References:Date:In-Reply-To:From; b=ZkKrefgWmU+pRusg7wTONxYsW13VFxrgvHiIztVb0rJGM71Xb6OnW0Pgzh4ezHoPc EjyKWDyCKoysYr2fzkaisjtbE54W7nLghExAYAmkxTEt7a/OeXwTSOUuwINQWo7EK3 /hnPZNZgyXhF82FVyJrAmyHKqBZL8gIU5RyDLgX4= Received: from x230.qca.qualcomm.com (a88-114-240-52.elisa-laajakaista.fi [88.114.240.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) (Authenticated sender: kvalo@smtp.codeaurora.org) by smtp.codeaurora.org (Postfix) with ESMTPSA id 3510A6025D; Thu, 5 Oct 2017 06:54:35 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=codeaurora.org; s=default; t=1507186485; bh=xJYhV6oqcPoHvx8ohN/ikovIfIM5MGorVc75zaxRmbo=; h=From:To:Cc:Subject:References:Date:In-Reply-To:From; b=J0V05Snnf0qaUNrquL+d53cPUMB1Zqjzn5/w+mco8HOC3e+27dPsY8LHrJ+BxoHQI mLFCmxaXf1TF4/OLZHszqUxUTNWvyRFRVEr3e7/8kxuE+YWDI2ZzlMac001PoXrDXi pqWOP8zvzRp0XrWkwYPiTE3/Ds4YmIX0ls+Mq2wU= DMARC-Filter: OpenDMARC Filter v1.3.2 smtp.codeaurora.org 3510A6025D Authentication-Results: pdx-caf-mail.web.codeaurora.org; dmarc=none (p=none dis=none) header.from=codeaurora.org Authentication-Results: pdx-caf-mail.web.codeaurora.org; spf=none smtp.mailfrom=kvalo@codeaurora.org From: Kalle Valo To: Kees Cook Cc: Thomas Gleixner , Andrew Morton , Arnd Bergmann , Benjamin Herrenschmidt , Chris Metcalf , Geert Uytterhoeven , Greg Kroah-Hartman , Guenter Roeck , Harish Patil , Heiko Carstens , "James E.J. Bottomley" , John Stultz , Julian Wiedmann , Lai Jiangshan , Len Brown , Manish Chopra , Mark Gross , "Martin K. Petersen" , Martin Schwidefsky , Michael Ellerman , Michael Reed , netdev@vger.kernel.org, Oleg Nesterov , Paul Mackerras , Pavel Machek , Petr Mladek , "Rafael J. Wysocki" , Ralf Baechle , Sebastian Reichel , Stefan Richter , Stephen Boyd , Sudip Mukherjee , Tejun Heo , Ursula Braun , Viresh Kumar , Wim Van Sebroeck , linux1394-devel@lists.sourceforge.net, linux-mips@linux-mips.org, linux-pm@vger.kernel.org, linuxppc-dev@lists.ozlabs.org, linux-s390@vger.kernel.org, linux-scsi@vger.kernel.org, linux-watchdog@vger.kernel.org, linux-wireless@vger.kernel.org, linux-kernel@vger.kernel.org Subject: Re: [PATCH 10/13] timer: Remove expires and data arguments from DEFINE_TIMER References: <1507159627-127660-1-git-send-email-keescook@chromium.org> <1507159627-127660-11-git-send-email-keescook@chromium.org> Date: Thu, 05 Oct 2017 09:54:33 +0300 In-Reply-To: <1507159627-127660-11-git-send-email-keescook@chromium.org> (Kees Cook's message of "Wed, 4 Oct 2017 16:27:04 -0700") Message-ID: <87d1625bkm.fsf@qca.qualcomm.com> User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/24.5 (gnu/linux) MIME-Version: 1.0 Content-Type: text/plain Return-Path: X-Envelope-To: <"|/home/ecartis/ecartis -s linux-mips"> (uid 0) X-Orcpt: rfc822;linux-mips@linux-mips.org Original-Recipient: rfc822;linux-mips@linux-mips.org X-archive-position: 60277 X-ecartis-version: Ecartis v1.0.0 Sender: linux-mips-bounce@linux-mips.org Errors-to: linux-mips-bounce@linux-mips.org X-original-sender: kvalo@codeaurora.org Precedence: bulk List-help: List-unsubscribe: List-software: Ecartis version 1.0.0 List-Id: linux-mips X-List-ID: linux-mips List-subscribe: List-owner: List-post: List-archive: X-list: linux-mips Kees Cook writes: > Drop the arguments from the macro and adjust all callers with the > following script: > > perl -pi -e 's/DEFINE_TIMER\((.*), 0, 0\);/DEFINE_TIMER($1);/g;' \ > $(git grep DEFINE_TIMER | cut -d: -f1 | sort -u | grep -v timer.h) > > Signed-off-by: Kees Cook > Acked-by: Geert Uytterhoeven # for m68k parts [...] > drivers/net/wireless/atmel/at76c50x-usb.c | 2 +- For wireless: Acked-by: Kalle Valo -- Kalle Valo From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from smtp.codeaurora.org ([198.145.29.96]:55024 "EHLO smtp.codeaurora.org" rhost-flags-OK-OK-OK-OK) by eddie.linux-mips.org with ESMTP id S23990511AbdJEGyuJLjaa (ORCPT ); Thu, 5 Oct 2017 08:54:50 +0200 From: Kalle Valo Subject: Re: [PATCH 10/13] timer: Remove expires and data arguments from DEFINE_TIMER References: <1507159627-127660-1-git-send-email-keescook@chromium.org> <1507159627-127660-11-git-send-email-keescook@chromium.org> Date: Thu, 05 Oct 2017 09:54:33 +0300 In-Reply-To: <1507159627-127660-11-git-send-email-keescook@chromium.org> (Kees Cook's message of "Wed, 4 Oct 2017 16:27:04 -0700") Message-ID: <87d1625bkm.fsf@qca.qualcomm.com> MIME-Version: 1.0 Content-Type: text/plain Return-Path: Sender: linux-mips-bounce@linux-mips.org Errors-to: linux-mips-bounce@linux-mips.org List-help: List-unsubscribe: List-software: Ecartis version 1.0.0 List-subscribe: List-owner: List-post: List-archive: To: Kees Cook Cc: Thomas Gleixner , Andrew Morton , Arnd Bergmann , Benjamin Herrenschmidt , Chris Metcalf , Geert Uytterhoeven , Greg Kroah-Hartman , Guenter Roeck , Harish Patil , Heiko Carstens , "James E.J. Bottomley" , John Stultz , Julian Wiedmann , Lai Jiangshan , Len Brown , Manish Chopra , Mark Gross , "Martin K. Petersen" , Martin Schwidefsky , Michael Ellerman , Michael Reed , netdev@vger.kernel.org, Oleg Nesterov , Paul Mackerras , Pavel Machek , cw.cz, Petr Mladek , "Rafael J. Wysocki" , Ralf Baechle , Sebastian Reichel , Stefan Richter , Stephen Boyd , Sudip Mukherjee , Tejun Heo , Ursula Braun , Viresh Kumar , Wim Van Sebroeck , linux1394-devel@lists.sourceforge.net, linux-mips@linux-mips.org, linux-pm@vger.kernel.org, linuxppc-dev@lists.ozlabs.org, linux-s390@vger.kernel.org, linux-scsi@vger.kernel.org, linux-watchdog@vger.kernel.org, linux-wireless@vger.kernel.org, linux-kernel@vger.kernel.org Message-ID: <20171005065433.A6ue5Oyp_Ad4Es5FcP8bFWduNGxvVzfZ0Wyelytd_os@z> Kees Cook writes: > Drop the arguments from the macro and adjust all callers with the > following script: > > perl -pi -e 's/DEFINE_TIMER\((.*), 0, 0\);/DEFINE_TIMER($1);/g;' \ > $(git grep DEFINE_TIMER | cut -d: -f1 | sort -u | grep -v timer.h) > > Signed-off-by: Kees Cook > Acked-by: Geert Uytterhoeven # for m68k parts [...] > drivers/net/wireless/atmel/at76c50x-usb.c | 2 +- For wireless: Acked-by: Kalle Valo -- Kalle Valo From mboxrd@z Thu Jan 1 00:00:00 1970 From: Kalle Valo Subject: Re: [PATCH 10/13] timer: Remove expires and data arguments from DEFINE_TIMER Date: Thu, 05 Oct 2017 09:54:33 +0300 Message-ID: <87d1625bkm.fsf@qca.qualcomm.com> References: <1507159627-127660-1-git-send-email-keescook@chromium.org> <1507159627-127660-11-git-send-email-keescook@chromium.org> Mime-Version: 1.0 Content-Type: text/plain Return-path: In-Reply-To: <1507159627-127660-11-git-send-email-keescook@chromium.org> (Kees Cook's message of "Wed, 4 Oct 2017 16:27:04 -0700") Sender: linux-mips-bounce@linux-mips.org Errors-to: linux-mips-bounce@linux-mips.org List-help: List-unsubscribe: List-software: Ecartis version 1.0.0 List-subscribe: List-owner: List-post: List-archive: To: Kees Cook Cc: Thomas Gleixner , Andrew Morton , Arnd Bergmann , Benjamin Herrenschmidt , Chris Metcalf , Geert Uytterhoeven , Greg Kroah-Hartman , Guenter Roeck , Harish Patil , Heiko Carstens , "James E.J. Bottomley" , John Stultz , Julian Wiedmann , Lai Jiangshan , Len Brown , Manish Chopra , Mark Gross , "Martin K. Petersen" , Martin Schwidefsky , Michael Ellerman , Michael Reed , netdev@vger.kern List-Id: linux-pm@vger.kernel.org Kees Cook writes: > Drop the arguments from the macro and adjust all callers with the > following script: > > perl -pi -e 's/DEFINE_TIMER\((.*), 0, 0\);/DEFINE_TIMER($1);/g;' \ > $(git grep DEFINE_TIMER | cut -d: -f1 | sort -u | grep -v timer.h) > > Signed-off-by: Kees Cook > Acked-by: Geert Uytterhoeven # for m68k parts [...] > drivers/net/wireless/atmel/at76c50x-usb.c | 2 +- For wireless: Acked-by: Kalle Valo -- Kalle Valo