Великденски бонуси

2019-05-27 Thread Radoslav Dobrev
Здравейте, съвременното доплащане на храна под формата на ваучери за храна, които могат да бъдат използвани в най-голямата мрежа от заведения за хранене в страната, е инструмент, който ефективно повишава ефективността на персонала. Изборът на нашите ваучери за храна като форма на социална придо

Re: [PATCH 10/10] docs: fix broken documentation links

2019-05-27 Thread Rafael J. Wysocki
On Mon, May 20, 2019 at 4:48 PM Mauro Carvalho Chehab wrote: > > Mostly due to x86 and acpi conversion, several documentation > links are still pointing to the old file. Fix them. > > Signed-off-by: Mauro Carvalho Chehab For the ACPI part: Acked-by: Rafael J. Wysocki

Придобивки за персонала

2019-05-27 Thread Radoslav Dobrev
Здравейте, Запознати ли сте с най-новата социална придобивка – ваучери за храна? А обмисляли ли сте използването на такива ваучери, с помощта на които Вашият персонал може да пазарува в различни вериги хранителни магазини и заведения? Бих могъл да Ви се обадя по телефона и да Ви представя възмо

Re: [PATCH v2 1/3] KVM: x86: add support for user wait instructions

2019-05-27 Thread Peter Zijlstra
On Fri, May 24, 2019 at 03:56:35PM +0800, Tao Xu wrote: > This patch adds support for UMONITOR, UMWAIT and TPAUSE instructions > in kvm, and by default dont't expose it to kvm and provide a capability > to enable it. I'm thinking this should be conditional on the guest being a 1:1 guest, and I als

[PATCH 3/3] mm: remove tmem specifics from frontswap

2019-05-27 Thread Juergen Gross
The frontswap module contains several parts which are specific to tmem. With that no longer present those parts can be removed. Signed-off-by: Juergen Gross --- Documentation/vm/frontswap.rst | 17 + include/linux/frontswap.h | 5 -- mm/Kconfig | 16 ++--- mm/fro

[PATCH 2/3] mm: remove cleancache.c

2019-05-27 Thread Juergen Gross
With the removal of tmem and xen-selfballoon the only user of cleancache is gone. Remove it, too. Signed-off-by: Juergen Gross --- Documentation/vm/cleancache.rst | 296 Documentation/vm/frontswap.rst | 10 +- Documentation/vm/index.rst | 1 - MAI

[PATCH 1/3] xen: remove tmem driver

2019-05-27 Thread Juergen Gross
The Xen tmem (transcendent memory) driver can be removed, as the related Xen hypervisor feature never made it past the "experimental" state and will be removed in future Xen versions (>= 4.13). The xen-selfballoon driver depends on tmem, so it can be removed, too. Signed-off-by: Juergen Gross --

[PATCH 0/3] remove tmem and code depending on it

2019-05-27 Thread Juergen Gross
Tmem has been an experimental Xen feature which has been dropped recently due to security problems and lack of maintainership. So it is time now to drop it in Linux kernel, too. Juergen Gross (3): xen: remove tmem driver mm: remove cleancache.c mm: remove tmem specifics from frontswap Doc

[PATCH 1/5] scripts/sphinx-pre-install: make activate hint smarter

2019-05-27 Thread Mauro Carvalho Chehab
It is possible that multiple Sphinx virtualenvs are installed on a given kernel tree. Change the logic to get the latest version of those, as this is probably what the user wants. Signed-off-by: Mauro Carvalho Chehab --- scripts/sphinx-pre-install | 22 ++ 1 file changed, 14

[PATCH 5/5] docs: requirements.txt: recommend Sphinx 1.7.9

2019-05-27 Thread Mauro Carvalho Chehab
As discussed at the linux-doc ML, while we'll still support version 1.3, it is time to recommend a more modern version. So, let's switch the minimal requirements to Sphinx 1.7.9, as it has the "-jauto" flag, with makes a lot faster when building documentation. Signed-off-by: Mauro Carvalho Chehab

[PATCH 3/5] scripts/sphinx-pre-install: always check if version is compatible with build

2019-05-27 Thread Mauro Carvalho Chehab
Call the script every time a make docs target is selected, on a simplified check mode. With this change, the script will set two vars: $min_version - obtained from `needs_sphinx` var inside conf.py (currently, '1.3') $rec_version - obtained from sphinx/requirements.txt. With thos

[PATCH 2/5] scripts/sphinx-pre-install: get rid of RHEL7 explicity check

2019-05-27 Thread Mauro Carvalho Chehab
RHEL8 was already launched. This test won't get it, and will do the wrong thing. Ok, we could fix it, but now we check Sphinx version to ensure that it matches the minimal (1.3), so there's no need for an explicit check there. Signed-off-by: Mauro Carvalho Chehab --- scripts/sphinx-pre-install |

[PATCH 4/5] docs: by default, build docs a lot faster with Sphinx >= 1.7

2019-05-27 Thread Mauro Carvalho Chehab
Since Sphinx version 1.7, it is possible to use "-jauto" in order to speedup documentation builds. On older versions, while -j was already supported, one would need to set the number of threads manually. So, if SPHINXOPTS is not provided, add -jauto, in order to speed up the build. That makes it *

[PATCH 0/5] Improvements to the documentation build system

2019-05-27 Thread Mauro Carvalho Chehab
The first three patches here address some issues with the script which detects the requirements for running Sphinx, making it a smarter and running it all the times, in order to allow recommending version updates. The 4th patch adds "-jauto" by default, if Sphinx version supports it (e. g. version

Re: Ingenic Timer/Counter Unit (TCU) patchset v12

2019-05-27 Thread Mathieu Malaterre
On Tue, May 21, 2019 at 4:51 PM Paul Cercueil wrote: > > Hi, > > Here's the V12 of my patchset to add support for the Timer/Counter Unit > (TCU) present on the JZ47xx SoCs from Ingenic. > > This patchset is much shorter at only 13 patches vs. 27 patches in V11; > the remaining patches will be sent

Re: [v4 PATCH] RISC-V: Add an Image header that boot loader can parse.

2019-05-27 Thread Loys Ollivier
On Thu 23 May 2019 at 21:18, Atish Patra wrote: > Currently, the last stage boot loaders such as U-Boot can accept only > uImage which is an unnecessary additional step in automating boot > process. > > Add an image header that boot loader understands and boot Linux from > flat Image directly. >

Re: [v4 PATCH] RISC-V: Add an Image header that boot loader can parse.

2019-05-27 Thread Ard Biesheuvel
On Fri, 24 May 2019 at 06:18, Atish Patra wrote: > > Currently, the last stage boot loaders such as U-Boot can accept only > uImage which is an unnecessary additional step in automating boot > process. > > Add an image header that boot loader understands and boot Linux from > flat Image directly.

Re: [v4 PATCH] RISC-V: Add an Image header that boot loader can parse.

2019-05-27 Thread Karsten Merker
On Mon, May 27, 2019 at 04:34:57PM +0200, Ard Biesheuvel wrote: > On Fri, 24 May 2019 at 06:18, Atish Patra wrote: > > Currently, the last stage boot loaders such as U-Boot can accept only > > uImage which is an unnecessary additional step in automating boot > > process. > > > > Add an image heade

[PATCH 5/7] docs: no structured comments in fs/file_table.c

2019-05-27 Thread Jonathan Corbet
Remove the kernel-doc directive, since there are only warnings to be found there. Signed-off-by: Jonathan Corbet --- Documentation/filesystems/api-summary.rst | 3 --- 1 file changed, 3 deletions(-) diff --git a/Documentation/filesystems/api-summary.rst b/Documentation/filesystems/api-summary.

[PATCH 1/7] docs: Do not seek comments in kernel/rcu/tree_plugin.h

2019-05-27 Thread Jonathan Corbet
There are no kerneldoc comments in this file, so do not attempt to include them in the docs build. Signed-off-by: Jonathan Corbet --- Documentation/core-api/kernel-api.rst | 2 -- Documentation/driver-api/basics.rst | 3 --- 2 files changed, 5 deletions(-) diff --git a/Documentation/core-api/

[PATCH 4/7] docs: No structured comments in target_core_device.c

2019-05-27 Thread Jonathan Corbet
Documentation/driver-api/target.rst is seeking kerneldoc comments in drivers/target/target_core_device.c, but no such comments exist. Take out the kernel-doc directive and eliminate one warning from the build. Signed-off-by: Jonathan Corbet --- Documentation/driver-api/target.rst | 4 ++-- 1 fi

[PATCH 0/7] The eternal battle against docs-build warnings

2019-05-27 Thread Jonathan Corbet
Here's a collection of trivial changes meant to eliminate a number of "no structured comments found" warnings - plus a kernel-doc tweak to make those problems easier to track down. Jonathan Corbet (7): docs: Do not seek comments in kernel/rcu/tree_plugin.h docs: Fix a misdirected kerneldoc dir

[PATCH 7/7] kernel-doc: always name missing kerneldoc sections

2019-05-27 Thread Jonathan Corbet
The "no structured comments found" warning is not particularly useful if there are several invocations, one of which is looking for something wrong. So if something specific has been requested, make it clear that it's the one we weren't able to find. Signed-off-by: Jonathan Corbet --- scripts/k

[PATCH 6/7] docs: No structured comments in include/linux/interconnect.h

2019-05-27 Thread Jonathan Corbet
Remove the kernel-doc directive for this file, since there's nothing there and it generates a warning. Signed-off-by: Jonathan Corbet --- Documentation/interconnect/interconnect.rst | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/Documentation/interconnect/interconnect.r

[PATCH 2/7] docs: Fix a misdirected kerneldoc directive

2019-05-27 Thread Jonathan Corbet
The stratix10 service layer documentation tried to include a kerneldoc comments for a nonexistent struct; leading to a "no structured comments found" message. Switch it to stratix10_svc_command_config_type, which appears at that spot in the sequence and was not included. Signed-off-by: Jonathan C

[PATCH 3/7] docs: Do not seek kerneldoc comments in hw-consumer.h

2019-05-27 Thread Jonathan Corbet
There are no kerneldoc comments here, so looking for them just yields a warning in the docs build. Signed-off-by: Jonathan Corbet --- Documentation/driver-api/iio/hw-consumer.rst | 1 - 1 file changed, 1 deletion(-) diff --git a/Documentation/driver-api/iio/hw-consumer.rst b/Documentation/driv

Re: [PATCH v2 1/3] KVM: x86: add support for user wait instructions

2019-05-27 Thread Tao Xu
On 27/05/2019 18:30, Peter Zijlstra wrote: On Fri, May 24, 2019 at 03:56:35PM +0800, Tao Xu wrote: This patch adds support for UMONITOR, UMWAIT and TPAUSE instructions in kvm, and by default dont't expose it to kvm and provide a capability to enable it. I'm thinking this should be conditiona

Re: [PATCH v2 1/3] KVM: x86: add support for user wait instructions

2019-05-27 Thread Wanpeng Li
On Tue, 28 May 2019 at 13:16, Tao Xu wrote: > > > On 27/05/2019 18:30, Peter Zijlstra wrote: > > On Fri, May 24, 2019 at 03:56:35PM +0800, Tao Xu wrote: > >> This patch adds support for UMONITOR, UMWAIT and TPAUSE instructions > >> in kvm, and by default dont't expose it to kvm and provide a capab