From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1752742AbdK2Ucm (ORCPT ); Wed, 29 Nov 2017 15:32:42 -0500 Received: from merlin.infradead.org ([205.233.59.134]:53572 "EHLO merlin.infradead.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751711AbdK2Uck (ORCPT ); Wed, 29 Nov 2017 15:32:40 -0500 To: "linux-doc@vger.kernel.org" , Jonathan Corbet Cc: LKML From: Randy Dunlap Subject: [PATCH 1/2 v2] Documentation: add Sorting section to kernel-api Message-ID: <70bd4e66-5e90-a66f-c8e5-5935dca3a2cc@infradead.org> Date: Wed, 29 Nov 2017 12:32:38 -0800 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:52.0) Gecko/20100101 Thunderbird/52.4.0 MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Language: en-US Content-Transfer-Encoding: 7bit Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org From: Randy Dunlap Add sort() and list_sort() to the kernel API documentation in a new "Sorting" section. Signed-off-by: Randy Dunlap --- Documentation/core-api/kernel-api.rst | 9 +++++++++ 1 file changed, 9 insertions(+) v2: updated to apply cleanly. --- linux-next-20171129.orig/Documentation/core-api/kernel-api.rst +++ linux-next-20171129/Documentation/core-api/kernel-api.rst @@ -139,6 +139,15 @@ Division Functions .. kernel-doc:: lib/gcd.c :export: +Sorting +------- + +.. kernel-doc:: lib/sort.c + :export: + +.. kernel-doc:: lib/list_sort.c + :export: + Memory Management in Linux ==========================