| /linux/scripts/kconfig/tests/err_recursive_dep/ |
| H A D | expected_stderr | 1 error: recursive dependency detected! 4 subsection "Kconfig recursive dependency limitations" 6 error: recursive dependency detected! 9 subsection "Kconfig recursive dependency limitations" 11 error: recursive dependency detected! 15 subsection "Kconfig recursive dependency limitations" 17 error: recursive dependency detected! 21 subsection "Kconfig recursive dependency limitations" 23 error: recursive dependency detected! 27 subsection "Kconfig recursive dependency limitations" [all …]
|
| /linux/Documentation/locking/ |
| H A D | lockdep-design.rst | 405 spin_lock() or write_lock()), non-recursive readers (i.e. shared lockers, like 406 down_read()) and recursive readers (recursive shared lockers, like rcu_read_lock()). 410 r: stands for non-recursive readers. 411 R: stands for recursive readers. 412 S: stands for all readers (non-recursive + recursive), as both are shared lockers. 413 N: stands for writers and non-recursive readers, as both are not recursive. 421 While non-recursive readers will cause a self deadlock if trying to acquire inside 424 The difference between recursive readers and non-recursive readers is because: 425 recursive readers get blocked only by a write lock *holder*, while non-recursive 435 Task A gets the reader (no matter whether recursive or non-recursive) on X via [all …]
|
| H A D | pi-futex.rst | 18 recursive locking, etc.
|
| /linux/Documentation/kbuild/ |
| H A D | Kconfig.recursion-issue-01 | 1 # Simple Kconfig recursive issue 8 # This Kconfig file has a simple recursive dependency issue. In order to 9 # understand why this recursive dependency issue occurs lets consider what 34 # the "recursive dependency detected" error. 41 # implications of this recursive issue where the solution is perhaps not so 43 # CORE also consist of a solution to this recursive problem. 45 mainmenu "Simple example to demo kconfig recursive dependency issue"
|
| H A D | Kconfig.recursion-issue-02 | 1 # Cumulative Kconfig recursive issue 8 # The recursive limitations with Kconfig has some non intuitive implications on 10 # of the recursive limitation is that drivers cannot negate features from other 47 mainmenu "Simple example to demo cumulative kconfig recursive dependency implication"
|
| H A D | kconfig-language.rst | 641 Kconfig recursive dependency limitations 644 If you've hit the Kconfig error: "recursive dependency detected" you've run 645 into a recursive dependency issue with Kconfig, a recursive dependency can be 651 Kconfig recursive issue" subsection below. Kconfig does not do recursive 658 Simple Kconfig recursive issue 667 Cumulative Kconfig recursive issue 676 Practical solutions to kconfig recursive issue 679 Developers who run into the recursive Kconfig issue have two options 699 Below is a list of examples of prior fixes for these types of recursive issues; 741 the current known recursive dependency issues. It is not known if this would [all …]
|
| /linux/tools/perf/ui/browsers/ |
| H A D | annotate-data.c | 447 bool recursive) in annotated_data_browser__fold() argument 453 if (entry->folded && !recursive) in annotated_data_browser__fold() 456 if (recursive) { in annotated_data_browser__fold() 467 bool recursive) in annotated_data_browser__unfold() argument 474 if (!entry->folded && !recursive) in annotated_data_browser__unfold() 479 if (recursive) in annotated_data_browser__unfold() 490 bool recursive) in annotated_data_browser__toggle_fold() argument 503 annotated_data_browser__unfold(browser, curr, recursive); in annotated_data_browser__toggle_fold() 505 annotated_data_browser__fold(browser, curr, recursive); in annotated_data_browser__toggle_fold()
|
| /linux/scripts/gdb/linux/ |
| H A D | device.py | 90 def _show_device(dev, level=0, recursive=False): argument 92 if recursive: 94 _show_device(child, level + 1, recursive) 147 _show_device(dev, level=0, recursive=True)
|
| /linux/samples/vfs/ |
| H A D | mountinfo.c | 216 bool recursive = false; in main() local 230 recursive = true; in main() 264 if (!recursive) in main()
|
| /linux/tools/testing/selftests/cgroup/ |
| H A D | memcg_protection.m | 54 % recursive protection
|
| /linux/tools/perf/util/ |
| H A D | dwarf-aux.c | 817 bool recursive; member 838 if (!lw->recursive) in __die_walk_funclines_cb() 856 static int __die_walk_funclines(Dwarf_Die *sp_die, bool recursive, in __die_walk_funclines() argument 860 .recursive = recursive, in __die_walk_funclines()
|
| /linux/Documentation/admin-guide/sysctl/ |
| H A D | user.rst | 33 This recursive counting of created objects ensures that creating a
|
| /linux/security/tomoyo/ |
| H A D | util.c | 867 goto recursive; in tomoyo_path_matches_pattern2() 883 recursive: in tomoyo_path_matches_pattern2()
|
| /linux/Documentation/filesystems/ |
| H A D | ceph.rst | 70 Ceph also provides some recursive accounting on directories for nested files 78 as no 'du' or similar recursive scan of the file system is required.
|
| /linux/lib/ |
| H A D | Kconfig.kgdb | 38 difficult to inadvertently provoke recursive trap handling.
|
| H A D | Kconfig | 360 modify. The algorithms are non-recursive, and the trees are highly
|
| /linux/include/sound/ |
| H A D | hda_codec.h | 361 hda_nid_t nid, int recursive);
|
| /linux/sound/hda/common/ |
| H A D | codec.c | 274 hda_nid_t nid, int recursive) in snd_hda_get_conn_index() argument 283 if (!recursive) in snd_hda_get_conn_index() 285 if (recursive > 10) { in snd_hda_get_conn_index() 289 recursive++; in snd_hda_get_conn_index() 294 if (snd_hda_get_conn_index(codec, conn[i], nid, recursive) >= 0) in snd_hda_get_conn_index()
|
| /linux/tools/net/ynl/pyynl/ |
| H A D | ynl_gen_c.py | 656 return self.family.pure_nested_structs[self.nested_attrs].recursive 975 self.recursive = False 1339 if self.pure_nested_structs[nested].recursive: 1455 struct.recursive = True 1467 if not child.recursive: 3617 if struct.recursive:
|
| /linux/Documentation/trace/ |
| H A D | kprobes.rst | 130 For example, if the function is non-recursive and is called with a 132 non-recursive and can never relinquish the CPU (e.g., via a semaphore 298 (trapping) such functions can cause a recursive trap (e.g. double
|
| /linux/Documentation/admin-guide/cgroup-v1/ |
| H A D | blkio-controller.rst | 247 same information as their non-recursive counterparts but
|
| /linux/fs/ |
| H A D | namespace.c | 3010 static struct mnt_namespace *get_detached_copy(const struct path *path, bool recursive) in get_detached_copy() argument 3035 mnt = __do_loopback(path, recursive); in get_detached_copy() 3049 static struct file *open_detached_copy(struct path *path, bool recursive) in open_detached_copy() argument 3051 struct mnt_namespace *ns = get_detached_copy(path, recursive); in open_detached_copy()
|
| /linux/Documentation/driver-api/rapidio/ |
| H A D | rapidio.rst | 254 The enumeration process traverses the network using a recursive depth-first
|
| /linux/Documentation/admin-guide/device-mapper/ |
| H A D | thin-provisioning.rst | 17 recursive snapshots (snapshots of snapshots of snapshots ...). The
|
| /linux/Documentation/core-api/ |
| H A D | printk-formats.rst | 474 Implements a "recursive vsnprintf".
|