Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > linux.kernel > #1473773 > unrolled thread

[ANNOUNCE] 4.4.19-rt27

Started bySteven Rostedt <rostedt@goodmis.org>
First post2016-08-31 20:10 +0200
Last post2016-09-01 17:20 +0200
Articles 4 — 3 participants

Back to article view | Back to linux.kernel


Contents

  [ANNOUNCE] 4.4.19-rt27 Steven Rostedt <rostedt@goodmis.org> - 2016-08-31 20:10 +0200
    Re: [ANNOUNCE] 4.4.19-rt27 Bernhard Landauer <oberon@manjaro.org> - 2016-09-01 10:10 +0200
      [PATCH] hyperv: Fix compilation issue with 4.4.19-rt27 Juerg Haefliger <juerg.haefliger@hpe.com> - 2016-09-01 11:00 +0200
        Re: [PATCH] hyperv: Fix compilation issue with 4.4.19-rt27 Steven Rostedt <rostedt@goodmis.org> - 2016-09-01 17:20 +0200

#1473773 — [ANNOUNCE] 4.4.19-rt27

FromSteven Rostedt <rostedt@goodmis.org>
Date2016-08-31 20:10 +0200
Subject[ANNOUNCE] 4.4.19-rt27
Message-ID<sci7v-5IJ-11@gated-at.bofh.it>
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

[toc] | [next] | [standalone]


#1474151

FromBernhard Landauer <oberon@manjaro.org>
Date2016-09-01 10:10 +0200
Message-ID<scvep-6Lf-3@gated-at.bofh.it>
In reply to#1473773
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

[toc] | [prev] | [next] | [standalone]


#1474186 — [PATCH] hyperv: Fix compilation issue with 4.4.19-rt27

FromJuerg Haefliger <juerg.haefliger@hpe.com>
Date2016-09-01 11:00 +0200
Subject[PATCH] hyperv: Fix compilation issue with 4.4.19-rt27
Message-ID<scw0O-7nt-31@gated-at.bofh.it>
In reply to#1474151
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

[toc] | [prev] | [next] | [standalone]


#1474458 — Re: [PATCH] hyperv: Fix compilation issue with 4.4.19-rt27

FromSteven Rostedt <rostedt@goodmis.org>
Date2016-09-01 17:20 +0200
SubjectRe: [PATCH] hyperv: Fix compilation issue with 4.4.19-rt27
Message-ID<scBWx-3yb-1@gated-at.bofh.it>
In reply to#1474186
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);
>  }
>  
>  

[toc] | [prev] | [standalone]


Back to top | Article view | linux.kernel


csiph-web