linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
From: Stephen Rothwell <sfr@canb.auug.org.au>
To: Andrew Morton <akpm@linux-foundation.org>,
	Petr Mladek <pmladek@suse.com>
Cc: Alexander Potapenko <glider@google.com>,
	John Ogness <john.ogness@linutronix.de>,
	Linux Kernel Mailing List <linux-kernel@vger.kernel.org>,
	Linux Next Mailing List <linux-next@vger.kernel.org>
Subject: linux-next: manual merge of the akpm-current tree with the printk tree
Date: Wed, 23 Jun 2021 21:12:36 +1000	[thread overview]
Message-ID: <20210623211225.77170b73@canb.auug.org.au> (raw)

[-- Attachment #1: Type: text/plain, Size: 2379 bytes --]

Hi all,

Today's linux-next merge of the akpm-current tree got a conflict in:

  lib/dump_stack.c

between commit:

  766c268bc6d3 ("lib/dump_stack: move cpu lock to printk.c")

from the printk tree and commit:

  250da8183544 ("printk: introduce dump_stack_lvl()")

from the akpm-current tree.

I fixed it up (see below) and can carry the fix as necessary. This
is now fixed as far as linux-next is concerned, but any non trivial
conflicts should be mentioned to your upstream maintainer when your tree
is submitted for merging.  You may also want to consider cooperating
with the maintainer of the conflicting tree to minimise any particularly
complex conflicts.

-- 
Cheers,
Stephen Rothwell

diff --cc lib/dump_stack.c
index 5ebf4375fa8c,586e3f2c6a15..000000000000
--- a/lib/dump_stack.c
+++ b/lib/dump_stack.c
@@@ -84,16 -84,56 +84,22 @@@ static void __dump_stack(const char *lo
   *
   * Architectures can override this implementation by implementing its own.
   */
- asmlinkage __visible void dump_stack(void)
 -#ifdef CONFIG_SMP
 -static atomic_t dump_lock = ATOMIC_INIT(-1);
 -
+ asmlinkage __visible void dump_stack_lvl(const char *log_lvl)
  {
  	unsigned long flags;
 -	int was_locked;
 -	int old;
 -	int cpu;
  
  	/*
  	 * Permit this cpu to perform nested stack dumps while serialising
  	 * against other CPUs
  	 */
 -retry:
 -	local_irq_save(flags);
 -	cpu = smp_processor_id();
 -	old = atomic_cmpxchg(&dump_lock, -1, cpu);
 -	if (old == -1) {
 -		was_locked = 0;
 -	} else if (old == cpu) {
 -		was_locked = 1;
 -	} else {
 -		local_irq_restore(flags);
 -		/*
 -		 * Wait for the lock to release before jumping to
 -		 * atomic_cmpxchg() in order to mitigate the thundering herd
 -		 * problem.
 -		 */
 -		do { cpu_relax(); } while (atomic_read(&dump_lock) != -1);
 -		goto retry;
 -	}
 -
 -	__dump_stack(log_lvl);
 -
 -	if (!was_locked)
 -		atomic_set(&dump_lock, -1);
 -
 -	local_irq_restore(flags);
 -}
 -#else
 -asmlinkage __visible void dump_stack_lvl(const char *log_lvl)
 -{
 +	printk_cpu_lock_irqsave(flags);
- 	__dump_stack();
+ 	__dump_stack(log_lvl);
 +	printk_cpu_unlock_irqrestore(flags);
  }
 -#endif
+ EXPORT_SYMBOL(dump_stack_lvl);
+ 
+ asmlinkage __visible void dump_stack(void)
+ {
+ 	dump_stack_lvl(KERN_DEFAULT);
+ }
  EXPORT_SYMBOL(dump_stack);

[-- Attachment #2: OpenPGP digital signature --]
[-- Type: application/pgp-signature, Size: 488 bytes --]

             reply	other threads:[~2021-06-23 11:12 UTC|newest]

Thread overview: 2+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2021-06-23 11:12 Stephen Rothwell [this message]
  -- strict thread matches above, loose matches on Subject: below --
2019-10-18  6:00 linux-next: manual merge of the akpm-current tree with the printk tree Stephen Rothwell

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20210623211225.77170b73@canb.auug.org.au \
    --to=sfr@canb.auug.org.au \
    --cc=akpm@linux-foundation.org \
    --cc=glider@google.com \
    --cc=john.ogness@linutronix.de \
    --cc=linux-kernel@vger.kernel.org \
    --cc=linux-next@vger.kernel.org \
    --cc=pmladek@suse.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).