Lines Matching refs:deleted
74 added or deleted, rather than being modified in place.
205 deleted, without in-place modification, it is very easy to use RCU!
290 function in ipc/shm.c). This code checks a *deleted* flag under a
291 per-entry spinlock, and, if the *deleted* flag is set, pretends that the
298 For the deleted-flag technique to be helpful, why is it necessary
304 to accomplish this would be to add a ``deleted`` flag and a ``lock`` spinlock to the
316 if (e->deleted) {
329 Note that this example assumes that entries are only added and deleted.
335 The ``audit_del_rule()`` function would need to set the ``deleted`` flag under the
349 e->deleted = 1;
448 either added or deleted from the data structure (or atomically modified
451 If stale data cannot be tolerated, then a *deleted* flag may be used
453 function to reject newly deleted data.
458 For the deleted-flag technique to be helpful, why is it necessary
464 *deleted* flag. If processing stale data really is a problem,