Received: by 2002:a05:6a10:5bc5:0:0:0:0 with SMTP id os5csp2450987pxb; Tue, 12 Oct 2021 06:58:22 -0700 (PDT) X-Google-Smtp-Source: ABdhPJwbqw4lFtkcF7kIuIqTLt6nK8Nli2yS2HfhhqYbra9byfDitw0eNYD6ojkCbc/u1FavNlFK X-Received: by 2002:a50:cf48:: with SMTP id d8mr25091edk.293.1634047101966; Tue, 12 Oct 2021 06:58:21 -0700 (PDT) ARC-Seal: i=1; a=rsa-sha256; t=1634047101; cv=none; d=google.com; s=arc-20160816; b=GQoHV0v60VBnwJGhbtXXqY/W3v+T8/NaAjejKCsWu96GcxDk310QsKirNNF3ZGpkuA c9yUUrT/QSnNsmXxtwouBcWu9SbDduu4nQ1+DbNIa2cBnMBt6q4CHWKAHoiSCUWdUVh1 GjY2khmnT6HWf3Jjx7PbUEG3BF3DfEMqpFUJpbLfuqzGH6FphLzq9fR2wfBsZMosdYVt 5jr4Ynybe2ZRmpwCDBBYX84/J2/HE4U+MuAFlSxwKI+CJIUj4sQ2Q2CwinhtbEIsE8e1 unU7PVNAaBGJ/oNzq7y98h9KJaeDdiCCoMRwErFPiAQ1/6ZX/nnayLNrZQTO9iYqG1kp YpZQ== ARC-Message-Signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=arc-20160816; h=list-id:precedence:content-transfer-encoding:mime-version :message-id:date:subject:cc:to:from; bh=bDvJUsnCzk29X5TJLeMwwEQHXsAbZkZ1F1Y9YFUXgFM=; b=Ttvs7+6c8Vi1IzvP5aP4jAXsBSnIZ+yeV3mElG7GKeEZYbrV/NYgEeQclddq+z2XoM pi4OJGBURQ8/R1S7vPHeysUDza57WxiGM+kCTF4Cqo23IN/zP1yMBUCVTNRI1hbkDq2i W07kHt3my7FDV31CfRrDd6AdcL8U0IWfTDu/SQj/fGfqpoW4L8R4TA1BF7Hh6m57cRvv E5eCYNCX1lD8+DXcYoKyvsdi99NrscHs9P8NB0pV6eBcrpZRIqfFVovSTo90GPkxb08r 1dhKylZmzvRxv/9dKgD0M20C/2CrrQ4hzZxapfLI066ZBGIl0phe7zU4/4obmBdjzNlk Ezuw== ARC-Authentication-Results: i=1; mx.google.com; spf=pass (google.com: domain of linux-kernel-owner@vger.kernel.org designates 23.128.96.18 as permitted sender) smtp.mailfrom=linux-kernel-owner@vger.kernel.org; dmarc=fail (p=NONE sp=NONE dis=NONE) header.from=collabora.com Return-Path: Received: from vger.kernel.org (vger.kernel.org. [23.128.96.18]) by mx.google.com with ESMTP id o18si15515635edi.300.2021.10.12.06.57.57; Tue, 12 Oct 2021 06:58:21 -0700 (PDT) Received-SPF: pass (google.com: domain of linux-kernel-owner@vger.kernel.org designates 23.128.96.18 as permitted sender) client-ip=23.128.96.18; Authentication-Results: mx.google.com; spf=pass (google.com: domain of linux-kernel-owner@vger.kernel.org designates 23.128.96.18 as permitted sender) smtp.mailfrom=linux-kernel-owner@vger.kernel.org; dmarc=fail (p=NONE sp=NONE dis=NONE) header.from=collabora.com Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S237031AbhJLN6J (ORCPT + 99 others); Tue, 12 Oct 2021 09:58:09 -0400 Received: from bhuna.collabora.co.uk ([46.235.227.227]:53414 "EHLO bhuna.collabora.co.uk" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S236783AbhJLN6J (ORCPT ); Tue, 12 Oct 2021 09:58:09 -0400 Received: from [127.0.0.1] (localhost [127.0.0.1]) (Authenticated sender: tonyk) with ESMTPSA id 9480A1F439EA From: =?UTF-8?q?Andr=C3=A9=20Almeida?= To: Stephen Rothwell , Thomas Gleixner , Peter Zijlstra Cc: linux-kernel@vger.kernel.org, linux-next@vger.kernel.org, Ingo Molnar , "H . Peter Anvin" , Jonathan Corbet , =?UTF-8?q?Andr=C3=A9=20Almeida?= Subject: [PATCH] docs: futex: Fix kernel-doc references Date: Tue, 12 Oct 2021 10:55:49 -0300 Message-Id: <20211012135549.14451-1-andrealmeid@collabora.com> X-Mailer: git-send-email 2.33.0 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Since the futex code was restructured, there's no futex.c file anymore and the implementation is split in various files. Point kernel-doc references to the new files. Signed-off-by: André Almeida --- Documentation/kernel-hacking/locking.rst | 14 +++++++++++++- .../translations/it_IT/kernel-hacking/locking.rst | 14 +++++++++++++- 2 files changed, 26 insertions(+), 2 deletions(-) diff --git a/Documentation/kernel-hacking/locking.rst b/Documentation/kernel-hacking/locking.rst index 90bc3f51eda9..e6cd40663ea5 100644 --- a/Documentation/kernel-hacking/locking.rst +++ b/Documentation/kernel-hacking/locking.rst @@ -1352,7 +1352,19 @@ Mutex API reference Futex API reference =================== -.. kernel-doc:: kernel/futex.c +.. kernel-doc:: kernel/futex/core.c + :internal: + +.. kernel-doc:: kernel/futex/futex.h + :internal: + +.. kernel-doc:: kernel/futex/pi.c + :internal: + +.. kernel-doc:: kernel/futex/requeue.c + :internal: + +.. kernel-doc:: kernel/futex/waitwake.c :internal: Further reading diff --git a/Documentation/translations/it_IT/kernel-hacking/locking.rst b/Documentation/translations/it_IT/kernel-hacking/locking.rst index 1efb8293bf1f..163f1bd4e857 100644 --- a/Documentation/translations/it_IT/kernel-hacking/locking.rst +++ b/Documentation/translations/it_IT/kernel-hacking/locking.rst @@ -1396,7 +1396,19 @@ Riferimento per l'API dei Mutex Riferimento per l'API dei Futex =============================== -.. kernel-doc:: kernel/futex.c +.. kernel-doc:: kernel/futex/core.c + :internal: + +.. kernel-doc:: kernel/futex/futex.h + :internal: + +.. kernel-doc:: kernel/futex/pi.c + :internal: + +.. kernel-doc:: kernel/futex/requeue.c + :internal: + +.. kernel-doc:: kernel/futex/waitwake.c :internal: Approfondimenti -- 2.33.0