All of lore.kernel.org
 help / color / mirror / Atom feed
* [[PATCH]irqbalance updated to 1.3.0] irqbalance: fix compilation errors
@ 2017-11-14 21:15 RC Reddy
  2017-11-15 21:01 ` Bruce Ashfield
  0 siblings, 1 reply; 4+ messages in thread
From: RC Reddy @ 2017-11-14 21:15 UTC (permalink / raw)
  To: meta-virtualization; +Cc: RC Reddy

Fixed issues:

New features in this release:[From Neil Horman]
=================================
optimization of platform device irq detection
Added sample udev rules to trigger irq rescans on device add/remove
Made irqbalance ui an optional compile component
Added support for Intel CoD
Add -v | --version option to command line

Bug fixes in this release:
==================================
Misc compiler warning fixes and spelling errors
Compilation error fix on aarch64
Compilation error fix when using clang in c99 mode
Unused variable cleanup
Lots of memory leak cleanup in irqbalance-ui
Prevent irqbalance from running in a container
Fix irq affinity assignment in some cases to wrong numa node
Fix oneshot mode
exclude legacy irq 255

Deprecations:
=================================
without-glib2 is removed, we just need it enough that we can't dummy it up anymore

Tested:
================================
Tested on AARCH64 and it compiles

Signed-off-by: RC Reddy <vlsireddy@gmail.com>
---
 recipes-extended/irqbalance/irqbalance_1.1.0.bb | 15 ---------------
 recipes-extended/irqbalance/irqbalance_1.3.0.bb | 15 +++++++++++++++
 2 files changed, 15 insertions(+), 15 deletions(-)
 delete mode 100644 recipes-extended/irqbalance/irqbalance_1.1.0.bb
 create mode 100644 recipes-extended/irqbalance/irqbalance_1.3.0.bb

diff --git a/recipes-extended/irqbalance/irqbalance_1.1.0.bb b/recipes-extended/irqbalance/irqbalance_1.1.0.bb
deleted file mode 100644
index 16efa95..0000000
--- a/recipes-extended/irqbalance/irqbalance_1.1.0.bb
+++ /dev/null
@@ -1,15 +0,0 @@
-#
-# Copyright (C) 2015 Wind River Systems, Inc.
-#
-
-require irqbalance.inc
-
-SRC_URI[md5sum] = "b15d975336080bcac4be0c1752d43cf3"
-SRC_URI[sha256sum] = "91506e638b03bf27cf5da7dc250d58a753ce8a0288a20265fc7ff0266040706b"
-
-SRC_URI = "https://github.com/Irqbalance/irqbalance/archive/v${PV}.tar.gz;downloadfilename=irqbalance-${PV}.tar.gz \
-           file://add-initscript.patch \
-           file://irqbalance-Add-status-and-reload-commands.patch \
-           file://fix-configure-libcap-ng.patch \
-           file://irqbalanced.service \
-          "
diff --git a/recipes-extended/irqbalance/irqbalance_1.3.0.bb b/recipes-extended/irqbalance/irqbalance_1.3.0.bb
new file mode 100644
index 0000000..5581a8b
--- /dev/null
+++ b/recipes-extended/irqbalance/irqbalance_1.3.0.bb
@@ -0,0 +1,15 @@
+#
+# Copyright (C) 2015 Wind River Systems, Inc.
+#
+
+require irqbalance.inc
+
+SRC_URI[md5sum] = "53ee393adcfbc8e5ab23cbbd920df687"
+SRC_URI[sha256sum] = "41c2c0842d8fb24240d8069b389cd8d1669625a40009a17ad886967845dc6e43"
+
+SRC_URI = "https://github.com/Irqbalance/irqbalance/archive/v${PV}.tar.gz;downloadfilename=irqbalance-${PV}.tar.gz \
+           file://add-initscript.patch \
+           file://irqbalance-Add-status-and-reload-commands.patch \
+           file://fix-configure-libcap-ng.patch \
+           file://irqbalanced.service \
+          "
-- 
1.9.1



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

* Re: [[PATCH]irqbalance updated to 1.3.0] irqbalance: fix compilation errors
  2017-11-14 21:15 [[PATCH]irqbalance updated to 1.3.0] irqbalance: fix compilation errors RC Reddy
@ 2017-11-15 21:01 ` Bruce Ashfield
  0 siblings, 0 replies; 4+ messages in thread
From: Bruce Ashfield @ 2017-11-15 21:01 UTC (permalink / raw)
  To: RC Reddy; +Cc: meta-virtualization

merged.

Bruce

On Tue, Nov 14, 2017 at 4:15 PM, RC Reddy <vlsireddy@gmail.com> wrote:
> Fixed issues:
>
> New features in this release:[From Neil Horman]
> =================================
> optimization of platform device irq detection
> Added sample udev rules to trigger irq rescans on device add/remove
> Made irqbalance ui an optional compile component
> Added support for Intel CoD
> Add -v | --version option to command line
>
> Bug fixes in this release:
> ==================================
> Misc compiler warning fixes and spelling errors
> Compilation error fix on aarch64
> Compilation error fix when using clang in c99 mode
> Unused variable cleanup
> Lots of memory leak cleanup in irqbalance-ui
> Prevent irqbalance from running in a container
> Fix irq affinity assignment in some cases to wrong numa node
> Fix oneshot mode
> exclude legacy irq 255
>
> Deprecations:
> =================================
> without-glib2 is removed, we just need it enough that we can't dummy it up anymore
>
> Tested:
> ================================
> Tested on AARCH64 and it compiles
>
> Signed-off-by: RC Reddy <vlsireddy@gmail.com>
> ---
>  recipes-extended/irqbalance/irqbalance_1.1.0.bb | 15 ---------------
>  recipes-extended/irqbalance/irqbalance_1.3.0.bb | 15 +++++++++++++++
>  2 files changed, 15 insertions(+), 15 deletions(-)
>  delete mode 100644 recipes-extended/irqbalance/irqbalance_1.1.0.bb
>  create mode 100644 recipes-extended/irqbalance/irqbalance_1.3.0.bb
>
> diff --git a/recipes-extended/irqbalance/irqbalance_1.1.0.bb b/recipes-extended/irqbalance/irqbalance_1.1.0.bb
> deleted file mode 100644
> index 16efa95..0000000
> --- a/recipes-extended/irqbalance/irqbalance_1.1.0.bb
> +++ /dev/null
> @@ -1,15 +0,0 @@
> -#
> -# Copyright (C) 2015 Wind River Systems, Inc.
> -#
> -
> -require irqbalance.inc
> -
> -SRC_URI[md5sum] = "b15d975336080bcac4be0c1752d43cf3"
> -SRC_URI[sha256sum] = "91506e638b03bf27cf5da7dc250d58a753ce8a0288a20265fc7ff0266040706b"
> -
> -SRC_URI = "https://github.com/Irqbalance/irqbalance/archive/v${PV}.tar.gz;downloadfilename=irqbalance-${PV}.tar.gz \
> -           file://add-initscript.patch \
> -           file://irqbalance-Add-status-and-reload-commands.patch \
> -           file://fix-configure-libcap-ng.patch \
> -           file://irqbalanced.service \
> -          "
> diff --git a/recipes-extended/irqbalance/irqbalance_1.3.0.bb b/recipes-extended/irqbalance/irqbalance_1.3.0.bb
> new file mode 100644
> index 0000000..5581a8b
> --- /dev/null
> +++ b/recipes-extended/irqbalance/irqbalance_1.3.0.bb
> @@ -0,0 +1,15 @@
> +#
> +# Copyright (C) 2015 Wind River Systems, Inc.
> +#
> +
> +require irqbalance.inc
> +
> +SRC_URI[md5sum] = "53ee393adcfbc8e5ab23cbbd920df687"
> +SRC_URI[sha256sum] = "41c2c0842d8fb24240d8069b389cd8d1669625a40009a17ad886967845dc6e43"
> +
> +SRC_URI = "https://github.com/Irqbalance/irqbalance/archive/v${PV}.tar.gz;downloadfilename=irqbalance-${PV}.tar.gz \
> +           file://add-initscript.patch \
> +           file://irqbalance-Add-status-and-reload-commands.patch \
> +           file://fix-configure-libcap-ng.patch \
> +           file://irqbalanced.service \
> +          "
> --
> 1.9.1
>
> --
> _______________________________________________
> meta-virtualization mailing list
> meta-virtualization@yoctoproject.org
> https://lists.yoctoproject.org/listinfo/meta-virtualization



-- 
"Thou shalt not follow the NULL pointer, for chaos and madness await
thee at its end"


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

* Re: [[PATCH]irqbalance updated to 1.3.0] irqbalance: fix compilation errors
  2017-11-14  2:58 RC Reddy
@ 2017-11-14 17:47 ` Bruce Ashfield
  0 siblings, 0 replies; 4+ messages in thread
From: Bruce Ashfield @ 2017-11-14 17:47 UTC (permalink / raw)
  To: RC Reddy; +Cc: meta-virtualization

On Mon, Nov 13, 2017 at 9:58 PM, RC Reddy <vlsireddy@gmail.com> wrote:
> Fixed issues:
>
> New features in this release:[From Neil Horman]
> =================================
> optimization of platform device irq detection
> Added sample udev rules to trigger irq rescans on device add/remove
> Made irqbalance ui an optional compile component
> Added support for Intel CoD
> Add -v | --version option to command line
>
> Bug fixes in this release:
> ==================================
> Misc compiler warning fixes and spelling errors
> Compilation error fix on aarch64
> Compilation error fix when using clang in c99 mode
> Unused variable cleanup
> Lots of memory leak cleanup in irqbalance-ui
> Prevent irqbalance from running in a container
> Fix irq affinity assignment in some cases to wrong numa node
> Fix oneshot mode
> exclude legacy irq 255
>
> Deprecations:
> =================================
> without-glib2 is removed, we just need it enough that we can't dummy it up anymore
>
> Tested:
> ================================
> Tested on AARCH64 and it compiles

the patch looks good, but we need your Signed-off-by: right here in the patch.

Also, if you do a git format-patch with -M the diff will be smaller.

So if you can send a v2 with those changes it should be ready to merge.

Bruce

> ---
>  recipes-extended/irqbalance/irqbalance_1.1.0.bb | 15 ---------------
>  recipes-extended/irqbalance/irqbalance_1.3.0.bb | 15 +++++++++++++++
>  2 files changed, 15 insertions(+), 15 deletions(-)
>  delete mode 100644 recipes-extended/irqbalance/irqbalance_1.1.0.bb
>  create mode 100644 recipes-extended/irqbalance/irqbalance_1.3.0.bb
>
> diff --git a/recipes-extended/irqbalance/irqbalance_1.1.0.bb b/recipes-extended/irqbalance/irqbalance_1.1.0.bb
> deleted file mode 100644
> index 16efa95..0000000
> --- a/recipes-extended/irqbalance/irqbalance_1.1.0.bb
> +++ /dev/null
> @@ -1,15 +0,0 @@
> -#
> -# Copyright (C) 2015 Wind River Systems, Inc.
> -#
> -
> -require irqbalance.inc
> -
> -SRC_URI[md5sum] = "b15d975336080bcac4be0c1752d43cf3"
> -SRC_URI[sha256sum] = "91506e638b03bf27cf5da7dc250d58a753ce8a0288a20265fc7ff0266040706b"
> -
> -SRC_URI = "https://github.com/Irqbalance/irqbalance/archive/v${PV}.tar.gz;downloadfilename=irqbalance-${PV}.tar.gz \
> -           file://add-initscript.patch \
> -           file://irqbalance-Add-status-and-reload-commands.patch \
> -           file://fix-configure-libcap-ng.patch \
> -           file://irqbalanced.service \
> -          "
> diff --git a/recipes-extended/irqbalance/irqbalance_1.3.0.bb b/recipes-extended/irqbalance/irqbalance_1.3.0.bb
> new file mode 100644
> index 0000000..5581a8b
> --- /dev/null
> +++ b/recipes-extended/irqbalance/irqbalance_1.3.0.bb
> @@ -0,0 +1,15 @@
> +#
> +# Copyright (C) 2015 Wind River Systems, Inc.
> +#
> +
> +require irqbalance.inc
> +
> +SRC_URI[md5sum] = "53ee393adcfbc8e5ab23cbbd920df687"
> +SRC_URI[sha256sum] = "41c2c0842d8fb24240d8069b389cd8d1669625a40009a17ad886967845dc6e43"
> +
> +SRC_URI = "https://github.com/Irqbalance/irqbalance/archive/v${PV}.tar.gz;downloadfilename=irqbalance-${PV}.tar.gz \
> +           file://add-initscript.patch \
> +           file://irqbalance-Add-status-and-reload-commands.patch \
> +           file://fix-configure-libcap-ng.patch \
> +           file://irqbalanced.service \
> +          "
> --
> 1.9.1
>
> --
> _______________________________________________
> meta-virtualization mailing list
> meta-virtualization@yoctoproject.org
> https://lists.yoctoproject.org/listinfo/meta-virtualization



-- 
"Thou shalt not follow the NULL pointer, for chaos and madness await
thee at its end"


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

* [[PATCH]irqbalance updated to 1.3.0] irqbalance: fix compilation errors
@ 2017-11-14  2:58 RC Reddy
  2017-11-14 17:47 ` Bruce Ashfield
  0 siblings, 1 reply; 4+ messages in thread
From: RC Reddy @ 2017-11-14  2:58 UTC (permalink / raw)
  To: meta-virtualization; +Cc: RC Reddy

Fixed issues:

New features in this release:[From Neil Horman]
=================================
optimization of platform device irq detection
Added sample udev rules to trigger irq rescans on device add/remove
Made irqbalance ui an optional compile component
Added support for Intel CoD
Add -v | --version option to command line

Bug fixes in this release:
==================================
Misc compiler warning fixes and spelling errors
Compilation error fix on aarch64
Compilation error fix when using clang in c99 mode
Unused variable cleanup
Lots of memory leak cleanup in irqbalance-ui
Prevent irqbalance from running in a container
Fix irq affinity assignment in some cases to wrong numa node
Fix oneshot mode
exclude legacy irq 255

Deprecations:
=================================
without-glib2 is removed, we just need it enough that we can't dummy it up anymore

Tested:
================================
Tested on AARCH64 and it compiles
---
 recipes-extended/irqbalance/irqbalance_1.1.0.bb | 15 ---------------
 recipes-extended/irqbalance/irqbalance_1.3.0.bb | 15 +++++++++++++++
 2 files changed, 15 insertions(+), 15 deletions(-)
 delete mode 100644 recipes-extended/irqbalance/irqbalance_1.1.0.bb
 create mode 100644 recipes-extended/irqbalance/irqbalance_1.3.0.bb

diff --git a/recipes-extended/irqbalance/irqbalance_1.1.0.bb b/recipes-extended/irqbalance/irqbalance_1.1.0.bb
deleted file mode 100644
index 16efa95..0000000
--- a/recipes-extended/irqbalance/irqbalance_1.1.0.bb
+++ /dev/null
@@ -1,15 +0,0 @@
-#
-# Copyright (C) 2015 Wind River Systems, Inc.
-#
-
-require irqbalance.inc
-
-SRC_URI[md5sum] = "b15d975336080bcac4be0c1752d43cf3"
-SRC_URI[sha256sum] = "91506e638b03bf27cf5da7dc250d58a753ce8a0288a20265fc7ff0266040706b"
-
-SRC_URI = "https://github.com/Irqbalance/irqbalance/archive/v${PV}.tar.gz;downloadfilename=irqbalance-${PV}.tar.gz \
-           file://add-initscript.patch \
-           file://irqbalance-Add-status-and-reload-commands.patch \
-           file://fix-configure-libcap-ng.patch \
-           file://irqbalanced.service \
-          "
diff --git a/recipes-extended/irqbalance/irqbalance_1.3.0.bb b/recipes-extended/irqbalance/irqbalance_1.3.0.bb
new file mode 100644
index 0000000..5581a8b
--- /dev/null
+++ b/recipes-extended/irqbalance/irqbalance_1.3.0.bb
@@ -0,0 +1,15 @@
+#
+# Copyright (C) 2015 Wind River Systems, Inc.
+#
+
+require irqbalance.inc
+
+SRC_URI[md5sum] = "53ee393adcfbc8e5ab23cbbd920df687"
+SRC_URI[sha256sum] = "41c2c0842d8fb24240d8069b389cd8d1669625a40009a17ad886967845dc6e43"
+
+SRC_URI = "https://github.com/Irqbalance/irqbalance/archive/v${PV}.tar.gz;downloadfilename=irqbalance-${PV}.tar.gz \
+           file://add-initscript.patch \
+           file://irqbalance-Add-status-and-reload-commands.patch \
+           file://fix-configure-libcap-ng.patch \
+           file://irqbalanced.service \
+          "
-- 
1.9.1



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

end of thread, other threads:[~2017-11-15 21:01 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2017-11-14 21:15 [[PATCH]irqbalance updated to 1.3.0] irqbalance: fix compilation errors RC Reddy
2017-11-15 21:01 ` Bruce Ashfield
  -- strict thread matches above, loose matches on Subject: below --
2017-11-14  2:58 RC Reddy
2017-11-14 17:47 ` Bruce Ashfield

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.