All of lore.kernel.org
 help / color / mirror / Atom feed
* [ANNOUNCE] 4.4.19-rt27
@ 2016-08-31 18:09 Steven Rostedt
  2016-09-01  7:46 ` Bernhard Landauer
  0 siblings, 1 reply; 4+ messages in thread
From: Steven Rostedt @ 2016-08-31 18:09 UTC (permalink / raw)
  To: LKML, linux-rt-users
  Cc: Thomas Gleixner, Carsten Emde, John Kacur, Sebastian Andrzej Siewior


Dear RT Folks,

I'm pleased to announce the 4.4.19-rt27 stable release.


This release is just an update to the new stable 4.4.19 version
and no RT specific changes have been made.


You can get this release via the git tree at:

  git://git.kernel.org/pub/scm/linux/kernel/git/rt/linux-stable-rt.git

  branch: v4.4-rt
  Head SHA1: 9eb16eaa11f388a29dcf3fe360ebd7849ee562f0


Or to build 4.4.19-rt27 directly, the following patches should be applied:

  http://www.kernel.org/pub/linux/kernel/v4.x/linux-4.4.tar.xz

  http://www.kernel.org/pub/linux/kernel/v4.x/patch-4.4.19.xz

  http://www.kernel.org/pub/linux/kernel/projects/rt/4.4/patch-4.4.19-rt27.patch.xz




Enjoy,

-- Steve

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

* Re: [ANNOUNCE] 4.4.19-rt27
  2016-08-31 18:09 [ANNOUNCE] 4.4.19-rt27 Steven Rostedt
@ 2016-09-01  7:46 ` Bernhard Landauer
  2016-09-01  8:57   ` [PATCH] hyperv: Fix compilation issue with 4.4.19-rt27 Juerg Haefliger
  0 siblings, 1 reply; 4+ messages in thread
From: Bernhard Landauer @ 2016-09-01  7:46 UTC (permalink / raw)
  To: Steven Rostedt, LKML, linux-rt-users
  Cc: Thomas Gleixner, Carsten Emde, John Kacur, Sebastian Andrzej Siewior

This version of the patch produces a compile error for me about 
|add_interrupt_randomness
|

|CC [M] drivers/hv/vmbus_drv.o drivers/hv/vmbus_drv.c: In function 
‘vmbus_isr’: drivers/hv/vmbus_drv.c:831:2: error: too few arguments to 
function ‘add_interrupt_randomness’ 
add_interrupt_randomness(HYPERVISOR_CALLBACK_VECTOR, 0); 
^~~~~~~~~~~~~~~~~~~~~~~~ In file included from 
drivers/hv/vmbus_drv.c:44:0: include/linux/random.h:23:13: note: 
declared here extern void add_interrupt_randomness(int irq, int 
irq_flags, __u64 ip); ^~~~~~~~~~~~~~~~~~~~~~~~ make[2]: *** 
[scripts/Makefile.build:258: drivers/hv/vmbus_drv.o] Error 1 make[1]: 
*** [scripts/Makefile.build:403: drivers/hv] Error 2 make: *** 
[Makefile:947: drivers] Error 2 Any ideas? regards Bernhard |


On 31/08/16 20:09, Steven Rostedt wrote:
> Dear RT Folks,
>
> I'm pleased to announce the 4.4.19-rt27 stable release.
>
>
> This release is just an update to the new stable 4.4.19 version
> and no RT specific changes have been made.
>
>
> You can get this release via the git tree at:
>
>    git://git.kernel.org/pub/scm/linux/kernel/git/rt/linux-stable-rt.git
>
>    branch: v4.4-rt
>    Head SHA1: 9eb16eaa11f388a29dcf3fe360ebd7849ee562f0
>
>
> Or to build 4.4.19-rt27 directly, the following patches should be applied:
>
>    http://www.kernel.org/pub/linux/kernel/v4.x/linux-4.4.tar.xz
>
>    http://www.kernel.org/pub/linux/kernel/v4.x/patch-4.4.19.xz
>
>    http://www.kernel.org/pub/linux/kernel/projects/rt/4.4/patch-4.4.19-rt27.patch.xz
>
>
>
>
> Enjoy,
>
> -- Steve
>
> --
> To unsubscribe from this list: send the line "unsubscribe linux-rt-users" in
> the body of a message to majordomo@vger.kernel.org
> More majordomo info at  http://vger.kernel.org/majordomo-info.html

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

* [PATCH] hyperv: Fix compilation issue with 4.4.19-rt27
  2016-09-01  7:46 ` Bernhard Landauer
@ 2016-09-01  8:57   ` Juerg Haefliger
  2016-09-01 15:13     ` Steven Rostedt
  0 siblings, 1 reply; 4+ messages in thread
From: Juerg Haefliger @ 2016-09-01  8:57 UTC (permalink / raw)
  To: oberon, rostedt, linux-kernel, linux-rt-users
  Cc: tglx, C.Emde, jkacur, bigeasy, Juerg Haefliger

Fix a compilation issue introduced by upstream commit
4b44f2d18a330565227a7348844493c59366171e

The upstream commit exports the symbol add_interrupt_randomness()
which is now being used in the Hyper-V driver. The RT patch adds another
argument to that function so its usage in the Hyper-V driver needs to
be fixed.

This patch should be merged with:
patches/0216-random-Make-it-work-on-rt.patch
commit 20985550b01a21ba00a587d17d7c26da61e01acc random: Make it work on rt

Signed-off-by: Juerg Haefliger <juerg.haefliger@hpe.com>
Reviewed-by: T Makphaibulchoke <tmac@hpe.com>
---
 drivers/hv/vmbus_drv.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/hv/vmbus_drv.c b/drivers/hv/vmbus_drv.c
index 9b5440f6b3b4..c9c4899834f2 100644
--- a/drivers/hv/vmbus_drv.c
+++ b/drivers/hv/vmbus_drv.c
@@ -828,7 +828,7 @@ static void vmbus_isr(void)
 			tasklet_schedule(&msg_dpc);
 	}
 
-	add_interrupt_randomness(HYPERVISOR_CALLBACK_VECTOR, 0);
+	add_interrupt_randomness(HYPERVISOR_CALLBACK_VECTOR, 0, 0);
 }
 
 
-- 
2.9.3

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

* Re: [PATCH] hyperv: Fix compilation issue with 4.4.19-rt27
  2016-09-01  8:57   ` [PATCH] hyperv: Fix compilation issue with 4.4.19-rt27 Juerg Haefliger
@ 2016-09-01 15:13     ` Steven Rostedt
  0 siblings, 0 replies; 4+ messages in thread
From: Steven Rostedt @ 2016-09-01 15:13 UTC (permalink / raw)
  To: Juerg Haefliger
  Cc: oberon, linux-kernel, linux-rt-users, tglx, C.Emde, jkacur, bigeasy

On Thu,  1 Sep 2016 10:57:14 +0200
Juerg Haefliger <juerg.haefliger@hpe.com> wrote:

> Fix a compilation issue introduced by upstream commit
> 4b44f2d18a330565227a7348844493c59366171e
> 
> The upstream commit exports the symbol add_interrupt_randomness()
> which is now being used in the Hyper-V driver. The RT patch adds another
> argument to that function so its usage in the Hyper-V driver needs to
> be fixed.
> 

I guess I should have run "make allmodconfig" before posting. Just
didn't have the time. :-/

Thanks for the patch. I'm currently working to get my mainline work
finished (that's taking up my resources). I'll work to include this
patch either tomorrow, or it will have to wait for next week, as it's a
US holiday weekend.

-- Steve

> This patch should be merged with:
> patches/0216-random-Make-it-work-on-rt.patch
> commit 20985550b01a21ba00a587d17d7c26da61e01acc random: Make it work on rt
> 
> Signed-off-by: Juerg Haefliger <juerg.haefliger@hpe.com>
> Reviewed-by: T Makphaibulchoke <tmac@hpe.com>
> ---
>  drivers/hv/vmbus_drv.c | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/drivers/hv/vmbus_drv.c b/drivers/hv/vmbus_drv.c
> index 9b5440f6b3b4..c9c4899834f2 100644
> --- a/drivers/hv/vmbus_drv.c
> +++ b/drivers/hv/vmbus_drv.c
> @@ -828,7 +828,7 @@ static void vmbus_isr(void)
>  			tasklet_schedule(&msg_dpc);
>  	}
>  
> -	add_interrupt_randomness(HYPERVISOR_CALLBACK_VECTOR, 0);
> +	add_interrupt_randomness(HYPERVISOR_CALLBACK_VECTOR, 0, 0);
>  }
>  
>  

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

end of thread, other threads:[~2016-09-01 15:14 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2016-08-31 18:09 [ANNOUNCE] 4.4.19-rt27 Steven Rostedt
2016-09-01  7:46 ` Bernhard Landauer
2016-09-01  8:57   ` [PATCH] hyperv: Fix compilation issue with 4.4.19-rt27 Juerg Haefliger
2016-09-01 15:13     ` Steven Rostedt

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.