Lines Matching refs:deleted
90 or deleted, rather than being modified in place. This is a rare example
229 deleted, without in-place modification, it is very easy to use RCU!
320 function in ipc/shm.c). This code checks a *deleted* flag under a
321 per-entry spinlock, and, if the *deleted* flag is set, pretends that the
328 For the deleted-flag technique to be helpful, why is it necessary
334 to accomplish this would be to add a ``deleted`` flag and a ``lock`` spinlock to the
346 if (e->deleted) {
361 The ``audit_del_rule()`` function would need to set the ``deleted`` flag under the
375 e->deleted = 1;
386 Note that this example assumes that entries are only added and deleted.
489 either added or deleted from the data structure (or atomically modified
492 If stale data cannot be tolerated, then a *deleted* flag may be used
494 function to reject newly deleted data.
499 For the deleted-flag technique to be helpful, why is it necessary
505 *deleted* flag. If processing stale data really is a problem,