]> git.proxmox.com Git - mirror_ubuntu-zesty-kernel.git/commit - scripts/kconfig/symbol.c
kconfig: sort found symbols by relevance
authorYann E. MORIN <yann.morin.1998@free.fr>
Mon, 6 May 2013 12:57:47 +0000 (14:57 +0200)
committerYann E. MORIN <yann.morin.1998@free.fr>
Mon, 24 Jun 2013 17:57:45 +0000 (19:57 +0200)
commit193b40aeb537b59eaa36e3dfaabedc2025332ebf
treef72ea744e1e9aeb53c5a546c1599d496412bd5c6
parenta5f6d795f5941e97e757b643a6482968a66c6150
kconfig: sort found symbols by relevance

When searching for symbols, return the symbols sorted by relevance.

Sorting is done as thus:
  - first, symbols that match exactly
  - then, alphabetical sort

Since the search can be a regexp, it is possible that more than one symbol
matches exactly. In this case, we can't decide which to sort first, so we
fallback to alphabeticall sort.

Explain this (new!) sorting heuristic in the documentation.

Reported-by: Jean Delvare <jdelvare@suse.de>
Signed-off-by: "Yann E. MORIN" <yann.morin.1998@free.fr>
Cc: Jean Delvare <jdelvare@suse.de>
Cc: Michal Marek <mmarek@suse.cz>
Cc: Roland Eggner <edvx1@systemanalysen.net>
Cc: Wang YanQing <udknight@gmail.com>
--
Changes v1->v2:
  - drop the previous, complex heuristic in favour of a simpler heuristic
    that is both easier to understand, *and* to maintain (Jean)
  - explain sorting heuristic in the doc  (Jean)
Documentation/kbuild/kconfig.txt
scripts/kconfig/symbol.c