From mboxrd@z Thu Jan 1 00:00:00 1970 From: Neil Horman Subject: [PATCH v4 0/2] sctp: Consolidate and ratelimit deprecation warnings Date: Mon, 23 Dec 2013 08:29:41 -0500 Message-ID: <1387805383-21500-1-git-send-email-nhorman@tuxdriver.com> References: <1387205049-22752-1-git-send-email-nhorman@tuxdriver.com> Cc: Neil Horman , Vlad Yasevich , David Miller , Greg Kroah-Hartman , netdev@vger.kernel.org, linux-kernel@vger.kernel.org To: linux-sctp@vger.kernel.org Return-path: In-Reply-To: <1387205049-22752-1-git-send-email-nhorman@tuxdriver.com> Sender: linux-kernel-owner@vger.kernel.org List-Id: netdev.vger.kernel.org The SCTP protocol has several deprecation warnings in its setsockopt path that can be triggered by unprivlidged users. Since these are not ratelimited, we can spam the logs quite easily here. Since these are all deprecation warnings, and that type of warning isn't uncommon in the rest of the kernel, lets make a common pr_warn_deprecated macro to produce somewhat generalized ratelimited deprecation warnings easily Signed-off-by: Neil Horman CC: Vlad Yasevich CC: David Miller CC: Greg Kroah-Hartman CC: netdev@vger.kernel.org CC: linux-kernel@vger.kernel.org --- Change notes v2) Converted to use a pr_warn_deprecated macro v3) Converted to use a DEPRECATED macro with regular pr_* macros v4) CC netdev on all patches as per DaveM