| /linux/lib/ |
| H A D | assoc_array.c | 451 static bool assoc_array_insert_in_empty_tree(struct assoc_array_edit *edit) in assoc_array_insert_in_empty_tree() argument 461 edit->new_meta[0] = assoc_array_node_to_ptr(new_n0); in assoc_array_insert_in_empty_tree() 462 edit->leaf_p = &new_n0->slots[0]; in assoc_array_insert_in_empty_tree() 463 edit->adjust_count_on = new_n0; in assoc_array_insert_in_empty_tree() 464 edit->set[0].ptr = &edit->array->root; in assoc_array_insert_in_empty_tree() 465 edit->set[0].to = assoc_array_node_to_ptr(new_n0); in assoc_array_insert_in_empty_tree() 474 static bool assoc_array_insert_into_terminal_node(struct assoc_array_edit *edit, in assoc_array_insert_into_terminal_node() argument 490 edit->segment_cache[ASSOC_ARRAY_FAN_OUT] = result->terminal_node.slot; in assoc_array_insert_into_terminal_node() 514 edit->leaf_p = &node->slots[i]; in assoc_array_insert_into_terminal_node() 515 edit->dead_leaf = node->slots[i]; in assoc_array_insert_into_terminal_node() [all …]
|
| /linux/security/keys/ |
| H A D | keyring.c | 1299 struct assoc_array_edit *edit; in __key_link_begin() local 1317 edit = assoc_array_insert(&keyring->keys, in __key_link_begin() 1321 if (IS_ERR(edit)) { in __key_link_begin() 1322 ret = PTR_ERR(edit); in __key_link_begin() 1329 if (!edit->dead_leaf) { in __key_link_begin() 1336 *_edit = edit; in __key_link_begin() 1341 assoc_array_cancel_edit(edit); in __key_link_begin() 1387 struct assoc_array_edit *edit) in __key_link_end() argument 1394 if (edit) { in __key_link_end() 1395 if (!edit->dead_leaf) { in __key_link_end() [all …]
|
| H A D | key.c | 506 struct assoc_array_edit *edit = NULL; in key_instantiate_and_link() local 526 ret = __key_link_begin(keyring, &key->index_key, &edit); in key_instantiate_and_link() 540 ret = __key_instantiate_and_link(key, &prep, keyring, authkey, &edit); in key_instantiate_and_link() 544 __key_link_end(keyring, &key->index_key, edit); in key_instantiate_and_link() 581 struct assoc_array_edit *edit = NULL; in key_reject_and_link() local 596 link_ret = __key_link_begin(keyring, &key->index_key, &edit); in key_reject_and_link() 598 __key_link_end(keyring, &key->index_key, edit); in key_reject_and_link() 619 __key_link(keyring, key, &edit); in key_reject_and_link() 629 __key_link_end(keyring, &key->index_key, edit); in key_reject_and_link() 819 struct assoc_array_edit *edit = NULL; in __key_create_or_update() local [all …]
|
| H A D | request_key.c | 375 struct assoc_array_edit *edit = NULL; in construct_alloc_key() local 428 ret = __key_link_begin(dest_keyring, &key->index_key, &edit); in construct_alloc_key() 431 __key_link(dest_keyring, key, &edit); in construct_alloc_key() 436 __key_link_end(dest_keyring, &key->index_key, edit); in construct_alloc_key() 449 ret = __key_link_begin(dest_keyring, &key->index_key, &edit); in construct_alloc_key() 454 __key_link(dest_keyring, key, &edit); in construct_alloc_key() 455 __key_link_end(dest_keyring, &key->index_key, edit); in construct_alloc_key() 473 __key_link_end(dest_keyring, &key->index_key, edit); in construct_alloc_key()
|
| H A D | internal.h | 107 struct assoc_array_edit *edit);
|
| /linux/include/linux/ |
| H A D | assoc_array.h | 73 extern void assoc_array_insert_set_object(struct assoc_array_edit *edit, 80 extern void assoc_array_apply_edit(struct assoc_array_edit *edit); 81 extern void assoc_array_cancel_edit(struct assoc_array_edit *edit);
|
| /linux/Documentation/translations/zh_CN/core-api/ |
| H A D | assoc_array.rst | 91 void assoc_array_apply_edit(struct assoc_array_edit *edit); 96 2. Cancel an edit script:: 98 void assoc_array_cancel_edit(struct assoc_array_edit *edit);
|
| /linux/Documentation/arch/powerpc/ |
| H A D | mpc52xx.rst | 11 # <edit Makefile to set ARCH=ppc & CROSS_COMPILE=... ( also EXTRAVERSION 23 # <edit Makefile to set ARCH=ppc & CROSS_COMPILE=... ( also EXTRAVERSION
|
| /linux/Documentation/core-api/ |
| H A D | assoc_array.rst | 74 The insertion and deletion functions produce an 'edit script' that can later be 91 1. Apply an edit script:: 93 void assoc_array_apply_edit(struct assoc_array_edit *edit); 95 This will perform the edit functions, interpolating various write barriers 96 to permit accesses under the RCU read lock to continue. The edit script 100 2. Cancel an edit script:: 102 void assoc_array_cancel_edit(struct assoc_array_edit *edit); 104 This frees the edit script and all preallocated memory immediately. If 196 an edit script that must be applied. ``-ENOMEM`` is returned in the case of 215 an edit script that must be applied. ``-ENOMEM`` is returned in the case of [all …]
|
| /linux/include/uapi/linux/ |
| H A D | aio_abi.h | 84 #error edit for your odd byteorder.
|
| /linux/Documentation/scsi/ |
| H A D | NinjaSCSI.rst | 72 (d) Extract this driver's archive somewhere, and edit Makefile, then do make:: 85 So, you don't need to edit file. Just copy to /etc/pcmcia/ .
|
| H A D | cxgb3i.rst | 76 3. edit /etc/iscsi/iscsid.conf
|
| H A D | ChangeLog.arcmsr | 45 ** miss edit at arcmsr_build_ccb....
|
| /linux/Documentation/translations/zh_CN/process/ |
| H A D | maintainer-pgp-guide.rst | 381 $ gpg --card-edit 410 $ gpg --edit-key [fpr] 425 使用 ``--edit-key`` 使我们再次进入菜单模式,你会注意到按键列表有点
|
| /linux/Documentation/RCU/ |
| H A D | rcu.rst | 92 …r browser at (https://docs.google.com/document/d/1X0lThx8OK0ZgLMqVoXiR4ZrGURHrXK6NyLRbeXe3Xac/edit) 93 …or (https://docs.google.com/document/d/1GCdQC8SDbb54W1shjEXqGZ0Rq8a6kIeYutdSIajfpLA/edit?usp=shari…
|
| /linux/Documentation/usb/ |
| H A D | linux.inf | 53 HKR, NDI\params\VistaProperty, type, 0, "edit"
|
| /linux/tools/perf/scripts/perl/Perf-Trace-Util/ |
| H A D | README | 25 edit Context.c to add const to the char* file = __FILE__ line in
|
| /linux/Documentation/process/ |
| H A D | code-of-conduct.rst | 48 Maintainers have the right and responsibility to remove, edit, or reject
|
| /linux/Documentation/admin-guide/nfs/ |
| H A D | nfs-idmapper.rst | 48 would edit your request-key.conf so it look similar to this:
|
| /linux/Documentation/maintainer/ |
| H A D | messy-diffstat.rst | 95 output and edit it into the messy pull request, yielding a result that
|
| /linux/Documentation/mm/damon/ |
| H A D | maintainer-profile.rst | 99 <https://docs.google.com/document/d/1v43Kcj3ly4CYqmAkMaZzLiM2GEnWfgdGbZAH3mi2vpM/edit?usp=sharing>`…
|
| /linux/tools/power/pm-graph/ |
| H A D | README | 439 the config so that you can override and edit them. Place them in the 453 all the internal timeline functions into the config and allows you to edit 513 functions into the config so that you can override and edit them. Place them 528 all the internal dev timeline functions into the config and allows you to edit
|
| /linux/arch/powerpc/platforms/cell/spufs/ |
| H A D | spu_save_dump.h_shipped | 4 * Do not edit!
|
| /linux/tools/power/cpupower/ |
| H A D | README | 198 If you want to enable this systemd service, edit '/etc/cpupower-service.conf'
|
| /linux/Documentation/admin-guide/aoe/ |
| H A D | aoe.rst | 38 There is also an autoload script that shows how to edit
|