Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S932490AbbFIMMg (ORCPT ); Tue, 9 Jun 2015 08:12:36 -0400 Received: from mail-wg0-f51.google.com ([74.125.82.51]:36636 "EHLO mail-wg0-f51.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1753805AbbFIMM2 (ORCPT ); Tue, 9 Jun 2015 08:12:28 -0400 From: Julian Orth To: mtk.manpages@gmail.com Cc: linux-man@vger.kernel.org, linux-kernel@vger.kernel.org, Julian Orth Subject: [PATCH] sched_setattr.2: Remove a const attribute Date: Tue, 9 Jun 2015 14:11:41 +0200 Message-Id: <1433851901-25034-1-git-send-email-ju.orth@gmail.com> X-Mailer: git-send-email 2.4.2 Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 1030 Lines: 28 The attr argument of sched_setattr was documented as const but the kernel will modify the size field of this struct if it contains an invalid value. See the documentation of the size field for details. --- man2/sched_setattr.2 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/man2/sched_setattr.2 b/man2/sched_setattr.2 index dff8e6d..df14ab4 100644 --- a/man2/sched_setattr.2 +++ b/man2/sched_setattr.2 @@ -31,7 +31,7 @@ set and get scheduling policy and attributes .nf .B #include -.BI "int sched_setattr(pid_t " pid ", const struct sched_attr *" attr , +.BI "int sched_setattr(pid_t " pid ", struct sched_attr *" attr , .BI " unsigned int " flags ); .BI "int sched_getattr(pid_t " pid ", struct sched_attr *" attr , -- 2.4.2 -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/