> +#define mmu_notifier(function, mm, args...) \ ...__mn->ops->function(__mn, mm, args); \ I realize it is a minor nit, but since we put the continuation in column 81 in the next define, can we do the same here and make this more readable? ... I think the hlist_del needs to be before the function callout so we can free the structure without a use-after-free issue. hlist_for_each_entry_rcu(mn, n, &mm->mmu_notifier.head, hlist) { hlist_del_rcu(&mn->hlist); if (mn->ops->release) mn->ops->release(mn, mm); Remove Shouldn't this really be protected by the down_write(mmap_sem)? Maybe: BUG_ON(!rwsem_is_write_locked(&mm->mmap_sem)); hlist_add_head_rcu(&mn->hlist, &mm->mmu_notifier.head); hlist_del_rcu? Ditto on the lock. static DEFINE_SPINLOCK(mmu_rmap_notifier_list_lock); spin_lock(&mmu_rmap_notifier_list_lock); hlist_add_head_rcu(&mrn->hlist, &mmu_rmap_notifier_list); spin_unlock(&mmu_rmap_notifier_list_lock); spin_lock(&mmu_rmap_notifier_list_lock); hlist_del_rcu(&mrn->hlist); spin_unlock(&mmu_rmap_notifier_list_lock); Can we consider moving this notifier or introducing an additional notifier in the release or a flag to this one indicating early/late. The GRU that Jack is concerned with would benefit from the early in that it could just invalidate the GRU context and immediately all GRU TLB entries are invalid. I believe Jack would like to also be able to remove his entry from the mmu_notifier list in an effort to avoid the page and range callouts. XPMEM, would also benefit from a call early. We could make all the segments as being torn down and start the recalls. We already have this code in and working (have since it was first written 6 years ago). In this case, all segments are torn down with a single message to each of the importing partitions. In contrast, the teardown code which would happen now would be one set of messages for each vma. Thanks, Robin --
| Theodore Tso | Re: -mm merge plans for 2.6.23 -- sys_fallocate |
| Amit K. Arora | [RFC] Heads up on sys_fallocate() |
| Tarkan Erimer | Re: Dual-Licensing Linux Kernel with GPL V2 and GPL V3 |
| Greg Kroah-Hartman | [PATCH 011/196] sysfs: Fix a copy-n-paste typo in comment |
git: | |
| Jarek Poplawski | Re: [PATCH] pkt_sched: Destroy gen estimators under rtnl_lock(). |
| David Miller | Re: [GIT]: Networking |
| Gerrit Renker | [PATCH 27/37] dccp: Integration of dynamic feature activation - part 2 (server side) |
| Frans Pop | svc: failed to register lockdv1 RPC service (errno 97). |
