There now is only one rcu_state structure in a given build of the
Linux kernel, so there is no need to pass it as a parameter to RCU's
functions.  This commit therefore removes the rsp parameter from
print_other_cpu_stall().
Signed-off-by: Paul E. McKenney <paulmck@linux.vnet.ibm.com>
                panic("RCU Stall\n");
 }
 
-static void print_other_cpu_stall(struct rcu_state *rsp, unsigned long gp_seq)
+static void print_other_cpu_stall(unsigned long gp_seq)
 {
        int cpu;
        unsigned long flags;
        unsigned long j;
        int ndetected = 0;
        struct rcu_node *rnp = rcu_get_root();
+       struct rcu_state *rsp = &rcu_state;
        long totqlen = 0;
 
        /* Kick and suppress, if so configured. */
                   cmpxchg(&rsp->jiffies_stall, js, jn) == js) {
 
                /* They had a few time units to dump stack, so complain. */
-               print_other_cpu_stall(rsp, gs2);
+               print_other_cpu_stall(gs2);
        }
 }