* [PATCH] RCU barrier
@ 2004-02-05 13:28 Dipankar Sarma
2004-02-05 13:31 ` Nikita Danilov
0 siblings, 1 reply; 3+ messages in thread
From: Dipankar Sarma @ 2004-02-05 13:28 UTC (permalink / raw)
To: linux-kernel; +Cc: Nikita Danilov
This patch introduces a new interface - rcu_barrier() which waits
until all the RCUs queued until this call have been completed.
Nikita asked for this quite a while ago for reiser4 jnodes.
Sorry Nikita, if you are still using RCU in new reiserfs,
you don't need to use your own logic for this now. Just
call rcu_barrier() during umount.
If Nikita or other users use it, then I would like to push for
including this.
Thanks
Dipankar
Implements an RCU barrier that waits for all the in-flight RCUs to
complete.
include/linux/rcupdate.h | 3 +++
kernel/rcupdate.c | 37 +++++++++++++++++++++++++++++++++++++
2 files changed, 40 insertions(+)
diff -puN include/linux/rcupdate.h~rcu-barrier include/linux/rcupdate.h
--- linux-2.6.2-rcu/include/linux/rcupdate.h~rcu-barrier 2004-02-05 16:21:07.000000000 +0530
+++ linux-2.6.2-rcu-dipankar/include/linux/rcupdate.h 2004-02-05 16:24:49.000000000 +0530
@@ -96,6 +96,7 @@ struct rcu_data {
long batch; /* Batch # for current RCU batch */
struct list_head nxtlist;
struct list_head curlist;
+ struct rcu_head barrier;
};
DECLARE_PER_CPU(struct rcu_data, rcu_data);
@@ -106,6 +107,7 @@ extern struct rcu_ctrlblk rcu_ctrlblk;
#define RCU_batch(cpu) (per_cpu(rcu_data, (cpu)).batch)
#define RCU_nxtlist(cpu) (per_cpu(rcu_data, (cpu)).nxtlist)
#define RCU_curlist(cpu) (per_cpu(rcu_data, (cpu)).curlist)
+#define RCU_barrier(cpu) (per_cpu(rcu_data, (cpu)).barrier)
#define RCU_QSCTR_INVALID 0
@@ -131,6 +133,7 @@ extern void rcu_check_callbacks(int cpu,
extern void FASTCALL(call_rcu(struct rcu_head *head,
void (*func)(void *arg), void *arg));
extern void synchronize_kernel(void);
+extern void rcu_barrier(void);
#endif /* __KERNEL__ */
#endif /* __LINUX_RCUPDATE_H */
diff -puN kernel/rcupdate.c~rcu-barrier kernel/rcupdate.c
--- linux-2.6.2-rcu/kernel/rcupdate.c~rcu-barrier 2004-02-05 16:21:07.000000000 +0530
+++ linux-2.6.2-rcu-dipankar/kernel/rcupdate.c 2004-02-05 17:04:23.000000000 +0530
@@ -54,6 +54,9 @@ DEFINE_PER_CPU(struct rcu_data, rcu_data
/* Fake initialization required by compiler */
static DEFINE_PER_CPU(struct tasklet_struct, rcu_tasklet) = {NULL};
#define RCU_tasklet(cpu) (per_cpu(rcu_tasklet, cpu))
+static atomic_t rcu_barrier_cpu_count;
+static struct semaphore rcu_barrier_sema;
+static struct completion rcu_barrier_completion;
/**
* call_rcu - Queue an RCU update request.
@@ -79,6 +82,39 @@ void call_rcu(struct rcu_head *head, voi
local_irq_restore(flags);
}
+static void rcu_barrier_callback(void *notused)
+{
+ if (atomic_dec_and_test(&rcu_barrier_cpu_count))
+ complete(&rcu_barrier_completion);
+}
+
+static void rcu_barrier_func(void *notused)
+{
+ int cpu = get_cpu();
+ struct rcu_head *head;
+
+ head = &RCU_barrier(cpu);
+ atomic_inc(&rcu_barrier_cpu_count);
+ call_rcu(head, rcu_barrier_callback, NULL);
+ put_cpu_no_resched();
+}
+
+/**
+ * rcu_barrier - Wait until all the in-flight RCUs are complete.
+ */
+void rcu_barrier(void)
+{
+ BUG_ON(in_interrupt());
+ /* Take cpucontrol semaphore to protect against CPU hotplug */
+ down(&rcu_barrier_sema);
+ init_completion(&rcu_barrier_completion);
+ atomic_set(&rcu_barrier_cpu_count, 0);
+ rcu_barrier_func(NULL);
+ smp_call_function(rcu_barrier_func, NULL, 0, 1);
+ wait_for_completion(&rcu_barrier_completion);
+ up(&rcu_barrier_sema);
+}
+
/*
* Invoke the completed RCU callbacks. They are expected to be in
* a per-cpu list.
@@ -233,6 +269,7 @@ static struct notifier_block __devinitda
*/
void __init rcu_init(void)
{
+ sema_init(&rcu_barrier_sema, 1);
rcu_cpu_notify(&rcu_nb, CPU_UP_PREPARE,
(void *)(long)smp_processor_id());
/* Register notifier for non-boot CPUs */
_
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [PATCH] RCU barrier
2004-02-05 13:28 [PATCH] RCU barrier Dipankar Sarma
@ 2004-02-05 13:31 ` Nikita Danilov
2004-02-05 13:39 ` Dipankar Sarma
0 siblings, 1 reply; 3+ messages in thread
From: Nikita Danilov @ 2004-02-05 13:31 UTC (permalink / raw)
To: dipankar; +Cc: linux-kernel
Dipankar Sarma writes:
> This patch introduces a new interface - rcu_barrier() which waits
> until all the RCUs queued until this call have been completed.
> Nikita asked for this quite a while ago for reiser4 jnodes.
> Sorry Nikita, if you are still using RCU in new reiserfs,
> you don't need to use your own logic for this now. Just
> call rcu_barrier() during umount.
>
> If Nikita or other users use it, then I would like to push for
> including this.
Yes, we are still using RCU in the reiser4 (bravely). rcu_barrier()
would allow us to get rid of some really ugly code.
>
> Thanks
> Dipankar
>
Nikita.
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [PATCH] RCU barrier
2004-02-05 13:31 ` Nikita Danilov
@ 2004-02-05 13:39 ` Dipankar Sarma
0 siblings, 0 replies; 3+ messages in thread
From: Dipankar Sarma @ 2004-02-05 13:39 UTC (permalink / raw)
To: Nikita Danilov; +Cc: linux-kernel
On Thu, Feb 05, 2004 at 04:31:29PM +0300, Nikita Danilov wrote:
> Dipankar Sarma writes:
> > This patch introduces a new interface - rcu_barrier() which waits
> > until all the RCUs queued until this call have been completed.
> > Nikita asked for this quite a while ago for reiser4 jnodes.
> > Sorry Nikita, if you are still using RCU in new reiserfs,
> > you don't need to use your own logic for this now. Just
> > call rcu_barrier() during umount.
> >
> > If Nikita or other users use it, then I would like to push for
> > including this.
>
> Yes, we are still using RCU in the reiser4 (bravely). rcu_barrier()
> would allow us to get rid of some really ugly code.
Cool. Let me know if the rcu-barrier patch works for you. If it
does, I will push for its inclusion.
Thanks
Dipankar
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2004-02-05 13:38 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2004-02-05 13:28 [PATCH] RCU barrier Dipankar Sarma
2004-02-05 13:31 ` Nikita Danilov
2004-02-05 13:39 ` Dipankar Sarma
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox
all inboxes | Powered by JetHome®