linux-rt-users.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* Merge conflict on RT 4.14 to latest stable
@ 2018-03-01 13:28 Dan Murphy
  2018-03-01 13:41 ` Julia Cartwright
  0 siblings, 1 reply; 6+ messages in thread
From: Dan Murphy @ 2018-03-01 13:28 UTC (permalink / raw)
  To: linux-rt-users@vger.kernel.org, Julia Cartwright

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

Hello

We have a merge conflict in kernel/softirq.c when upgrading to the latest stable release

Please help resolve this.

Dan
-- 
------------------
Dan Murphy

[-- Attachment #2: linux_stable_rt_merge_conflict.txt --]
[-- Type: text/plain, Size: 1204 bytes --]

diff --cc kernel/softirq.c
index d0688a7,e89c3b0..0000000
--- a/kernel/softirq.c
+++ b/kernel/softirq.c
@@@ -950,27 -486,15 +950,31 @@@ void __tasklet_hi_schedule(struct taskl
  }
  EXPORT_SYMBOL(__tasklet_hi_schedule);
  
++<<<<<<< HEAD
 +void __tasklet_hi_schedule_first(struct tasklet_struct *t)
 +{
 +	BUG_ON(!irqs_disabled());
 +
 +	__tasklet_hi_schedule(t);
 +}
 +EXPORT_SYMBOL(__tasklet_hi_schedule_first);
 +
 +void  tasklet_enable(struct tasklet_struct *t)
++=======
+ static __latent_entropy void tasklet_action(struct softirq_action *a)
++>>>>>>> 852a96020848659ae7a03ede00d023151d5f79c8
  {
 -	struct tasklet_struct *list;
 +	if (!atomic_dec_and_test(&t->count))
 +		return;
 +	if (test_and_clear_bit(TASKLET_STATE_PENDING, &t->state))
 +		tasklet_schedule(t);
 +}
 +EXPORT_SYMBOL(tasklet_enable);
  
 -	local_irq_disable();
 -	list = __this_cpu_read(tasklet_vec.head);
 -	__this_cpu_write(tasklet_vec.head, NULL);
 -	__this_cpu_write(tasklet_vec.tail, this_cpu_ptr(&tasklet_vec.head));
 -	local_irq_enable();
 +static void __tasklet_action(struct softirq_action *a,
 +			     struct tasklet_struct *list)
 +{
 +	int loops = 1000000;
  
  	while (list) {
  		struct tasklet_struct *t = list;

^ permalink raw reply	[flat|nested] 6+ messages in thread

end of thread, other threads:[~2018-03-05 19:30 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2018-03-01 13:28 Merge conflict on RT 4.14 to latest stable Dan Murphy
2018-03-01 13:41 ` Julia Cartwright
2018-03-01 13:42   ` Dan Murphy
     [not found]     ` <20180301211335.GB955@jcartwri.amer.corp.natinst.com>
     [not found]       ` <8806abae-ac00-08ec-894b-904ebfcdb7f0@ti.com>
     [not found]         ` <20180301215909.GD955@jcartwri.amer.corp.natinst.com>
2018-03-05 17:56           ` Sebastian Andrzej Siewior
2018-03-05 18:02             ` Dan Murphy
2018-03-05 19:30           ` Hindman, Gavin

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).