Re: [very-RFC 4/8] Add TSN header for the driver

2016-06-11 Thread Henrik Austad
Clearing up netdev-typo -H On Sun, Jun 12, 2016 at 12:22:17AM +0200, Henrik Austad wrote: > From: Henrik Austad > > This defines the general TSN headers for network packets, the > shim-interface and the central 'tsn_list' structure. > > Cc: "David S. Miller" > Signed-off-by: Henrik Austad > -

Re: [very-RFC 3/8] Adding TSN-driver to Intel I210 controller

2016-06-11 Thread Henrik Austad
clearing up netdev-typo -H On Sun, Jun 12, 2016 at 12:22:16AM +0200, Henrik Austad wrote: > This adds support for loading the igb.ko module with tsn > capabilities. This requires a 2-step approach. First enabling TSN in > .config, then load the module with use_tsn=1. > > Once enabled and loaded,

Re: [PATCH] bcache: Remove deprecated create_workqueue

2016-06-11 Thread Tejun Heo
On Wed, Jun 08, 2016 at 01:57:19AM +0530, Bhaktipriya Shridhar wrote: > alloc_workqueue replaces deprecated create_workqueue(). > > Dedicated workqueues have been used since bcache_wq and moving_gc_wq > are workqueues for writes and are being used on a memory reclaim path. > WQ_MEM_RECLAIM has bee

Re: [very-RFC 2/8] TSN: Add the standard formerly known as AVB to the kernel

2016-06-11 Thread Henrik Austad
clearing up netdev-typo On Sun, Jun 12, 2016 at 12:22:15AM +0200, Henrik Austad wrote: > TSN provides a mechanism to create reliable, jitter-free, low latency > guaranteed bandwidth links over a local network. It does this by > reserving a path through the network. Support for TSN must be found in

Re: [very-RFC 1/8] TSN: add documentation

2016-06-11 Thread Henrik Austad
On Sat, Jun 11, 2016 at 03:49:42PM -0700, David Miller wrote: > From: Henrik Austad > Date: Sun, 12 Jun 2016 00:47:28 +0200 > > > What would be the best approach? Resend series to netdev@vger? I don't want > > to spam too many lists either. > > Resend to all the lists. ok, I'll do that then.

Re: [very-RFC 1/8] TSN: add documentation

2016-06-11 Thread David Miller
From: Henrik Austad Date: Sun, 12 Jun 2016 00:47:28 +0200 > What would be the best approach? Resend series to netdev@vger? I don't want > to spam too many lists either. Resend to all the lists.

Re: [very-RFC 1/8] TSN: add documentation

2016-06-11 Thread Henrik Austad
On Sun, Jun 12, 2016 at 12:22:14AM +0200, Henrik Austad wrote: > From: Henrik Austad Clearing up the netdev-typo > > Describe the overall design behind the TSN standard, the TSN-driver, > requirements to userspace and new functionality introduced. > > Cc: "David S. Miller" > Signed-off-by: He

Re: [very-RFC 0/8] TSN driver for the kernel

2016-06-11 Thread Henrik Austad
On Sun, Jun 12, 2016 at 12:22:13AM +0200, Henrik Austad wrote: > Hi all Sorry.. I somehow managed to mess up the address to netdev, so if you feel like replying to this, use this as it has the correct netdev-address. again, sorry > (series based on v4.7-rc2) > > This is a *very* early RFC for

Re: [GIT PULL] Ceph updates for 4.7-rc1

2016-06-11 Thread Arnd Bergmann
On Friday, June 10, 2016 2:32:21 PM CEST Linus Torvalds wrote: > On Fri, Jun 10, 2016 at 1:42 PM, Arnd Bergmann wrote: > > > > What I see is that this one exported symbol has a __crc of a different > > type from all the others: > > > > $ nm net/ceph/mon_client.o | grep __crc > > 48c2e16e A __crc_c

Re: [very-RFC 1/8] TSN: add documentation

2016-06-11 Thread Henrik Austad
On Sat, Jun 11, 2016 at 03:35:10PM -0700, David Miller wrote: > > Networking patches not CC:'d to net...@vger.kernel.org are unlikely to > be reviewed by networking developers at all. Oh no! I messed up git send-email and wrote linux-netdev@vger instead of netdev@vger. What would be the best ap

Re: [PATCH] libertas_tf: Remove create_workqueue

2016-06-11 Thread Tejun Heo
On Wed, Jun 08, 2016 at 01:38:53AM +0530, Bhaktipriya Shridhar wrote: > alloc_workqueue replaces deprecated create_workqueue(). > > A dedicated workqueue has been used since the workitem (viz > &priv->cmd_work per priv, which maps to lbtf_cmd_work) is involved in > actual command processing and ma

Re: [PATCH] crypto: qat: Remove deprecated create_workqueue

2016-06-11 Thread Tejun Heo
On Wed, Jun 08, 2016 at 02:47:47AM +0530, Bhaktipriya Shridhar wrote: > alloc_workqueue replaces deprecated create_workqueue(). > > The workqueue device_reset_wq has workitem &reset_data->reset_work per > adf_reset_dev_data. The workqueue pf2vf_resp_wq is a workqueue for > PF2VF responses has wor

Re: [very-RFC 1/8] TSN: add documentation

2016-06-11 Thread David Miller
Networking patches not CC:'d to net...@vger.kernel.org are unlikely to be reviewed by networking developers at all.

[very-RFC 2/8] TSN: Add the standard formerly known as AVB to the kernel

2016-06-11 Thread Henrik Austad
TSN provides a mechanism to create reliable, jitter-free, low latency guaranteed bandwidth links over a local network. It does this by reserving a path through the network. Support for TSN must be found in both the NIC as well as in the network itself. This adds required hooks into netdev_ops so t

[very-RFC 8/8] MAINTAINERS: add TSN/AVB-entries

2016-06-11 Thread Henrik Austad
From: Henrik Austad Not sure how relevant this is other than making a point about maintaining it. Signed-off-by: Henrik Austad --- MAINTAINERS | 14 ++ 1 file changed, 14 insertions(+) diff --git a/MAINTAINERS b/MAINTAINERS index ed42cb6..ef5d926 100644 --- a/MAINTAINERS +++ b/MAI

[very-RFC 7/8] AVB ALSA - Add ALSA shim for TSN

2016-06-11 Thread Henrik Austad
From: Henrik Austad This exposes a *very* rudimentary and simplistic ALSA driver that hooks into TSN to create a device for userspace. It currently only supports 44.1/48kHz sampling, 2ch, S16_LE Userspace is supposed to reserve bandwidth, find StreamID etc. To use as a Talker: mkdir /config/t

[very-RFC 1/8] TSN: add documentation

2016-06-11 Thread Henrik Austad
From: Henrik Austad Describe the overall design behind the TSN standard, the TSN-driver, requirements to userspace and new functionality introduced. Cc: "David S. Miller" Signed-off-by: Henrik Austad --- Documentation/TSN/tsn.txt | 147 ++ 1 file ch

[very-RFC 0/8] TSN driver for the kernel

2016-06-11 Thread Henrik Austad
Hi all (series based on v4.7-rc2) This is a *very* early RFC for a TSN-driver in the kernel. It has been floating around in my repo for a while and I would appreciate some feedback on the overall design to avoid doing some major blunders. TSN: Time Sensitive Networking, formely known as AVB (Audi

[very-RFC 5/8] Add TSN machinery to drive the traffic from a shim over the network

2016-06-11 Thread Henrik Austad
From: Henrik Austad In short summary: * tsn_core.c is the main driver of tsn, all new links go through here and all data to/form the shims are handled here core also manages the shim-interface. * tsn_configfs.c is the API to userspace. TSN is driven from userspace and a link is created, c

[very-RFC 3/8] Adding TSN-driver to Intel I210 controller

2016-06-11 Thread Henrik Austad
This adds support for loading the igb.ko module with tsn capabilities. This requires a 2-step approach. First enabling TSN in .config, then load the module with use_tsn=1. Once enabled and loaded, the controller will be placed in "Qav-mode" which is when the credit-based shaper is available, 3 of

[very-RFC 4/8] Add TSN header for the driver

2016-06-11 Thread Henrik Austad
From: Henrik Austad This defines the general TSN headers for network packets, the shim-interface and the central 'tsn_list' structure. Cc: "David S. Miller" Signed-off-by: Henrik Austad --- include/linux/tsn.h | 806 1 file changed, 806 ins

[very-RFC 6/8] Add TSN event-tracing

2016-06-11 Thread Henrik Austad
From: Henrik Austad This needs refactoring and should be updated to use TRACE_CLASS, but for now it provides a fair debug-window into TSN. Cc: "David S. Miller" Cc: Steven Rostedt (maintainer:TRACING) Cc: Ingo Molnar (maintainer:TRACING) Signed-off-by: Henrik Austad --- include/trace/events

Re: [PATCH 2/4] mtd: nand: implement two pairing scheme

2016-06-11 Thread George Spelvin
I was just browsing LKML history and wanted to understand this concept, but while reading I think I spotted an error. +static void nand_pairing_dist3_get_info(struct mtd_info *mtd, int page, + struct mtd_pairing_info *info) +{ + int lastpage = (mtd->era

Re: [PATCH] userspace API definitions for auto-focus coil

2016-06-11 Thread Sakari Ailus
Hi Ivaylo, On Mon, Jun 06, 2016 at 09:06:29AM +0300, Ivaylo Dimitrov wrote: > Hi, > > On 5.06.2016 22:07, Pavel Machek wrote: > >Add userspace API definitions. > > > >Signed-off-by: Pavel Machek > > > >diff --git a/include/uapi/linux/v4l2-controls.h > >b/include/uapi/linux/v4l2-controls.h > >i

Re: [PATCH v3,4/5] usb: Add MediaTek USB3 DRD Driver

2016-06-11 Thread kbuild test robot
Hi, [auto build test ERROR on usb/usb-testing] [also build test ERROR on v4.7-rc2 next-20160609] [if your patch is applied to the wrong git tree, please drop us a note to help improve the system] url: https://github.com/0day-ci/linux/commits/Chunfeng-Yun/usb-Add-MediaTek-USB3-DRD-Driver/2016

[PATCH 6/6 v2] staging: i4l: icn: fix incorrect type of arguments

2016-06-11 Thread Sudip Mukherjee
sparse was warning about incorrect type of argument: drivers/staging/i4l/icn/icn.c:1048:49: warning: incorrect type in argument 2 (different address spaces) drivers/staging/i4l/icn/icn.c:1048:49: expected void const [noderef] *from drivers/staging/i4l/icn/icn.c:1048:49: got unsigned char const [us

[PATCH 6/6] staging: i4l: icn: fix incorrect type of arguments

2016-06-11 Thread Sudip Mukherjee
sparse was warning about incorrect type of argument: drivers/staging/i4l/icn/icn.c:1048:49: warning: incorrect type in argument 2 (different address spaces) drivers/staging/i4l/icn/icn.c:1048:49: expected void const [noderef] *from drivers/staging/i4l/icn/icn.c:1048:49: got unsigned char const [us

[PATCH 2/6] staging: i4l: icn: donot assign in if statement

2016-06-11 Thread Sudip Mukherjee
It is not the kernel coding style to make assignments in the if statement and checkpatch was warning us about it. Signed-off-by: Sudip Mukherjee --- drivers/staging/i4l/icn/icn.c | 33 ++--- 1 file changed, 22 insertions(+), 11 deletions(-) diff --git a/drivers/stagi

[PATCH 3/6] staging: i4l: icn: space not needed after cast

2016-06-11 Thread Sudip Mukherjee
No need provide a space after a typecast. Signed-off-by: Sudip Mukherjee --- drivers/staging/i4l/icn/icn.c | 70 +-- 1 file changed, 35 insertions(+), 35 deletions(-) diff --git a/drivers/staging/i4l/icn/icn.c b/drivers/staging/i4l/icn/icn.c index c92f9cd

[PATCH 5/6] staging: i4l: icn: remove blank lines

2016-06-11 Thread Sudip Mukherjee
Blank lines are not needed after starting brace or before a closing brace. Signed-off-by: Sudip Mukherjee --- drivers/staging/i4l/icn/icn.c | 3 --- 1 file changed, 3 deletions(-) diff --git a/drivers/staging/i4l/icn/icn.c b/drivers/staging/i4l/icn/icn.c index ff0fb6c6..6991259 100644 --- a/dri

[PATCH 1/6] staging: i4l: icn: do not use return as a function

2016-06-11 Thread Sudip Mukherjee
return is not a function so no need to use the parenthesis. Signed-off-by: Sudip Mukherjee --- drivers/staging/i4l/icn/icn.c | 16 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/drivers/staging/i4l/icn/icn.c b/drivers/staging/i4l/icn/icn.c index 46d957c..c5dd572 1

[PATCH 4/6] staging: i4l: icn: remove braces

2016-06-11 Thread Sudip Mukherjee
Braces are not required in a single statement block. Signed-off-by: Sudip Mukherjee --- drivers/staging/i4l/icn/icn.c | 9 +++-- 1 file changed, 3 insertions(+), 6 deletions(-) diff --git a/drivers/staging/i4l/icn/icn.c b/drivers/staging/i4l/icn/icn.c index abc6599..ff0fb6c6 100644 --- a/dr

drivers/usb/musb/musb_dsps.c:478:32: error: 'MUSB_BABBLE_CTL' undeclared

2016-06-11 Thread kbuild test robot
Hi, FYI, the error/warning still remains. tree: https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git master head: 45b00c94be33db5d00595046663163ce55cbbfb9 commit: 0166dc11be911213e0b1b764488c671be4c48cf3 of: make CONFIG_OF user selectable date: 1 year ago config: blackfin-al

Re: [GIT PULL] SCSI fixes for 4.7-rc2

2016-06-11 Thread James Bottomley
On Sat, 2016-06-11 at 13:25 -0700, Linus Torvalds wrote: > On Sat, Jun 11, 2016 at 12:41 PM, James Bottomley > wrote: > > > > The QEMU people have accepted it as their bug and are fixing it. > > Of course they are. Somebody found a bug in their device model, I'd > expect nothing else. > > But I

Re: [PATCH 01/21] fs: Replace CURRENT_TIME_SEC with current_fs_time()

2016-06-11 Thread Arnd Bergmann
On Friday, June 10, 2016 10:03:14 PM CEST Deepa Dinamani wrote: > On Fri, Jun 10, 2016 at 3:21 PM, Arnd Bergmann wrote: > > > > In an earlier version, you had a small optimization to > > use ktime_get_real_seconds() instead of current_kernel_time() > > when the granularity is seconds. > > > > Do

Re: [GIT PULL] SCSI fixes for 4.7-rc2

2016-06-11 Thread James Bottomley
On Sat, 2016-06-11 at 12:57 -0700, Linus Torvalds wrote: > On Sat, Jun 11, 2016 at 12:41 PM, James Bottomley > wrote: > > > > It looks like there's a hole where the emulation should be for the > > VPD > > inquiry, which is what cause the whole hang up and never speak to > > us > > again problem.

Re: [PATCH] Add .set_antenna callback in ath6kl driver to remove wireless core warns

2016-06-11 Thread kbuild test robot
Hi, [auto build test ERROR on ath6kl/ath-next] [also build test ERROR on v4.7-rc2 next-20160609] [if your patch is applied to the wrong git tree, please drop us a note to help improve the system] url: https://github.com/0day-ci/linux/commits/Prasun-Maiti/Add-set_antenna-callback-in-ath6kl-dr

Re: [PATCH 0/5] Add suspend-to-idle validation for Intel SoCs

2016-06-11 Thread Pavel Machek
On Tue 2016-06-07 17:07:21, dbasehore . wrote: > On Tue, Jun 7, 2016 at 12:46 AM, Pavel Machek wrote: > > On Wed 2016-06-01 21:33:24, dbaseh...@chromium.org wrote: > >> From: Derek Basehore > >> > >> This patch set adds support for catching errors when entering freeze > >> on Intel Skylake SoCs.

Re: [PATCH] Add .set_antenna callback in ath6kl driver to remove wireless core warns

2016-06-11 Thread kbuild test robot
Hi, [auto build test ERROR on ath6kl/ath-next] [also build test ERROR on v4.7-rc2 next-20160609] [if your patch is applied to the wrong git tree, please drop us a note to help improve the system] url: https://github.com/0day-ci/linux/commits/Prasun-Maiti/Add-set_antenna-callback-in-ath6kl-dr

Re: [GIT PULL] SCSI fixes for 4.7-rc2

2016-06-11 Thread Linus Torvalds
On Sat, Jun 11, 2016 at 12:41 PM, James Bottomley wrote: > > The QEMU people have accepted it as their bug and are fixing it. Of course they are. Somebody found a bug in their device model, I'd expect nothing else. But I'm not worried about qemu. I'm worried about all the other random devices th

drivers/usb/musb/tusb6010.c:142:21: error: 'USB_INDEX' undeclared

2016-06-11 Thread kbuild test robot
Hi, FYI, the error/warning still remains. tree: https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git master head: 45b00c94be33db5d00595046663163ce55cbbfb9 commit: d026e9c76aac3632af174cf02d5c94defa5e6026 usb: musb: Change end point selection to use new IO access date: 1 year

[PATCH] staging:vt6656:card.c:Fix comment block issue

2016-06-11 Thread Rithvik Patibandla
Fix "Block comments use * on subsequent lines" and "Block comments use */ on trailing lines" warnings thrown by checkpatch.pl Signed-off-by: Rithvik Patibandla --- drivers/staging/vt6656/card.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/drivers/staging/vt6656/card.c b/

Re: [GIT PULL] SCSI fixes for 4.7-rc2

2016-06-11 Thread Linus Torvalds
On Sat, Jun 11, 2016 at 12:41 PM, James Bottomley wrote: > > It looks like there's a hole where the emulation should be for the VPD > inquiry, which is what cause the whole hang up and never speak to us > again problem. So? What makes you think real hardware doesn't have those kinds of issues? T

[patch] media: s5p-mfc: fix a couple double frees in probe

2016-06-11 Thread Dan Carpenter
The extra calls to video_device_release() are a bug, we free these after the goto. Fixes: c974c436eaf4 ('s5p-mfc: Fix race between s5p_mfc_probe() and s5p_mfc_open()') Signed-off-by: Dan Carpenter --- This code would be easier to understand if it didn't use "come from" style label names so that

arch/blackfin/mach-common/arch_checks.c:65:3: error: #error You need IFLUSH in L1 inst while Anomaly 05000491 applies

2016-06-11 Thread kbuild test robot
Hi, FYI, the error/warning still remains. tree: https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git master head: 45b00c94be33db5d00595046663163ce55cbbfb9 commit: 74181295fbc6e65047e85529aa74457d82355ffc Blackfin: allow cache funcs to be in L1 for IFLUSH Anomaly 05000491 date:

actualizar su cuenta de correo electrónico de inmediato

2016-06-11 Thread Administrator
Hola, por favor verificar su dirección de correo electrónico . Por favor, siga este enlace https://formcrafts.com/a/20226 para completar el proceso de verificación Su correo electrónico no estará en la lista hasta que haya comprobado o significaba estar cerca Saludos, Webmaster Equipo 2016 Act

drivers/usb/musb/musb_debugfs.c:52:13: error: 'USB_FADDR' undeclared here (not in a function)

2016-06-11 Thread kbuild test robot
Hi, FYI, the error/warning still remains. tree: https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git master head: 45b00c94be33db5d00595046663163ce55cbbfb9 commit: c2365ce5d5a0531f24ee488bf846acda4ecbe2aa usb: musb: replace hard coded registers with defines date: 1 year, 7 mo

Re: [GIT PULL] SCSI fixes for 4.7-rc2

2016-06-11 Thread James Bottomley
On Sat, 2016-06-11 at 12:12 -0700, Linus Torvalds wrote: > On Sat, Jun 11, 2016 at 11:54 AM, Linus Torvalds > wrote: > > > > Is there some reason to believe that the qemu CD-ROM emulation is > > the only one with this problem? > > Side note:the one thing that makes the qemu cd-rom emulator "spe

Re: [GIT PULL] SCSI fixes for 4.7-rc2

2016-06-11 Thread James Bottomley
On Sat, 2016-06-11 at 11:54 -0700, Linus Torvalds wrote: > On Sat, Jun 11, 2016 at 11:09 AM, James Bottomley > wrote: > > Two current fixes: one affects Qemu CD ROM emulation, which stopped > > working after the updates in SCSI to require VPD pages from all > > conformant devices. Fix temporarily

RE: [PATCH net-next,v2] tools: hv: Add a script to help bonding synthetic and VF NICs

2016-06-11 Thread Haiyang Zhang
> -Original Message- > From: David Miller [mailto:da...@davemloft.net] > Sent: Friday, June 10, 2016 9:14 PM > To: Haiyang Zhang > Cc: net...@vger.kernel.org; KY Srinivasan ; > o...@aepfle.de; vkuzn...@redhat.com; linux-kernel@vger.kernel.org; > driverdev-de...@linuxdriverproject.org > S

Re: [PATCH 0/3] mm, thp: remove duplication and fix locking issues in swapin

2016-06-11 Thread Ebru Akagunduz
On Fri, May 27, 2016 at 03:12:47PM +0200, Michal Hocko wrote: > On Mon 23-05-16 20:29:29, Ebru Akagunduz wrote: > > On Mon, May 23, 2016 at 08:14:08PM +0300, Ebru Akagunduz wrote: > > > This patch series removes duplication of included header > > > and fixes locking inconsistency in khugepaged swap

[RFC PATCH 0/3] mm, thp: convert from optimistic to conservative

2016-06-11 Thread Ebru Akagunduz
This patch series converts thp design from optimistic to conservative, creates a sysfs integer knob for conservative threshold and documents it. Ebru Akagunduz (3): mm, thp: revert allocstall comparing mm, thp: convert from optimistic to conservative doc: add information about min_ptes_youn

[RFC PATCH 2/3] mm, thp: convert from optimistic to conservative

2016-06-11 Thread Ebru Akagunduz
Currently, khugepaged collapses pages saying only a referenced page enough to create a THP. This patch changes the design from optimistic to conservative. It gives a default threshold which is half of HPAGE_PMD_NR for referenced pages, also introduces a new sysfs knob. Signed-off-by: Ebru Akagund

[RFC PATCH 3/3] doc: add information about min_ptes_young

2016-06-11 Thread Ebru Akagunduz
min_ptes_young specifies at least how many young pages needed to create a THP. This threshold also effects when making swapin readahead (if needed) to create a THP. We decide whether to make swapin readahed wortwhile looking the value. /sys/kernel/mm/transparent_hugepage/khugepaged/min_ptes_young

[RFC PATCH 1/3] mm, thp: revert allocstall comparing

2016-06-11 Thread Ebru Akagunduz
This patch takes back allocstall comparing when deciding whether swapin worthwhile because it does not work, if vmevent disabled. Related commit: http://git.kernel.org/cgit/linux/kernel/git/next/linux-next.git/commit/?id=2548306628308aa6a326640d345a737bc898941d Signed-off-by: Ebru Akagunduz ---

Re: [GIT PULL] SCSI fixes for 4.7-rc2

2016-06-11 Thread Linus Torvalds
On Sat, Jun 11, 2016 at 11:54 AM, Linus Torvalds wrote: > > Is there some reason to believe that the qemu CD-ROM emulation is the > only one with this problem? Side note:the one thing that makes the qemu cd-rom emulator "special" is not that it's not real hardware: it's that it's a lot more likel

Re: [PATCH v2 1/2] dt-bindings: pci: add DT binding for Axis ARTPEC-6 PCIe controller

2016-06-11 Thread Bjorn Helgaas
On Mon, May 09, 2016 at 01:48:27PM +0200, Niklas Cassel wrote: > From: Niklas Cassel > > This commit adds the Device Tree binding documentation that allows to > describe the PCIe controller found in the Axis ARTPEC-6 SoC. > > Signed-off-by: Niklas Cassel I applied both of these, with Rob's ack

Re: compilation with plugins

2016-06-11 Thread Julia Lawall
On Sat, 11 Jun 2016, Kees Cook wrote: > On Sat, Jun 11, 2016 at 11:29 AM, Julia Lawall wrote: > > Hello, > > > > I am not able to compile anything with last Friday's linux-next: > > Hi! This is due to the addition of the gcc plugin infrastructure, but > most people don't have the gcc plugin he

actualizar su cuenta de correo electrónico de inmediato

2016-06-11 Thread Administrator
Hola, por favor verificar su dirección de correo electrónico . Por favor, siga este enlace https://formcrafts.com/a/20226 para completar el proceso de verificación Su correo electrónico no estará en la lista hasta que haya comprobado o significaba estar cerca Saludos, Webmaster Equipo 2016 Act

[PATCH 1/3] toshiba_acpi: Add IIO interface for accelerometer axis data

2016-06-11 Thread Azael Avalos
This patch adds the accelerometer axis data to the IIO subsystem. Currently reporting the X, Y and Z values, as no other data can be queried given the fact that the accelerometer chip itself is hidden behind the Toshiba proprietary interface. Signed-off-by: Azael Avalos --- All: This is my firs

Re: compilation with plugins

2016-06-11 Thread Kees Cook
On Sat, Jun 11, 2016 at 11:29 AM, Julia Lawall wrote: > Hello, > > I am not able to compile anything with last Friday's linux-next: Hi! This is due to the addition of the gcc plugin infrastructure, but most people don't have the gcc plugin header packages installed. For now, we're going to disabl

Re: [GIT PULL] SCSI fixes for 4.7-rc2

2016-06-11 Thread Linus Torvalds
On Sat, Jun 11, 2016 at 11:09 AM, James Bottomley wrote: > Two current fixes: one affects Qemu CD ROM emulation, which stopped > working after the updates in SCSI to require VPD pages from all > conformant devices. Fix temporarily by blacklisting Qemu (we can relax > later when they come into com

[PATCH 0/3] toshiba_acpi: Accelerometer updates

2016-06-11 Thread Azael Avalos
These series of patches update the accelerometer axis data reporting to use the IIO subsystem, deprecating the custom position sysfs entry, and finally bumping the driver version to 0.24. Azael Avalos (3): toshiba_acpi: Add IIO interface for accelerometer axis data toshiba_acpi: Remove the pos

[PATCH 2/3] toshiba_acpi: Remove the position sysfs entry

2016-06-11 Thread Azael Avalos
Now that we have proper support for the acceleromeer under the IIO subsystem, the _position_ sysfs file is now deprecated. This patch removes all code related to the position sysfs entry. Signed-off-by: Azael Avalos --- drivers/platform/x86/toshiba_acpi.c | 29 - 1 f

[PATCH 3/3] toshiba_acpi: Bump driver version and update copyrignt year

2016-06-11 Thread Azael Avalos
After several fixes, and added support for more features (WWAN, Cooling Method and IIO accelometer axis data), bump the driver version to 0.24. Also update the copyright year. Signed-off-by: Azael Avalos --- drivers/platform/x86/toshiba_acpi.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deleti

compilation with plugins

2016-06-11 Thread Julia Lawall
Hello, I am not able to compile anything with last Friday's linux-next: commit 8f6027f7e808ed7c1fd8c8d37fc7a5076c683c4f Author: Stephen Rothwell Date: Thu Jun 9 16:31:36 2016 +1000 After running make allyesconfig, I get the following when trying to compile any file: cripts/Makefile.gcc-plug

drivers/usb/musb/musb_core.c:323:2: error: 'USB_INDEX' undeclared

2016-06-11 Thread kbuild test robot
Hi, First bad commit (maybe != root cause): tree: https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git master head: 3d0f0b6a5520878305589411b8d434fe088e4f21 commit: 1e546aa6c4cfe83050fc78487c8aa78b6947006c usb: musb: drop ARCH dependency date: 4 years, 6 months ago config: bl

[GIT PULL] SCSI fixes for 4.7-rc2

2016-06-11 Thread James Bottomley
Two current fixes: one affects Qemu CD ROM emulation, which stopped working after the updates in SCSI to require VPD pages from all conformant devices. Fix temporarily by blacklisting Qemu (we can relax later when they come into compliance). The other is a fix to the optimal transfer size. We se

Re: [RFC PATCHv3] usb: USB Type-C Connector Class

2016-06-11 Thread Guenter Roeck
On 06/11/2016 12:05 AM, Oliver Neukum wrote: On Fri, 2016-06-10 at 17:34 +0300, Heikki Krogerus wrote: +static ssize_t +preferred_role_store(struct device *dev, struct device_attribute *attr, +const char *buf, size_t size) +{ + struct typec_port *port = to_typec_port(de

[PULL REQUEST] i2c for 4.7

2016-06-11 Thread Wolfram Sang
Linus, please pull the bugfixes for I2C: * bigger fix for i801 to finally be able to be loaded on some machines again * smaller driver fixes * documentation update because of a renamed file Thanks, Wolfram The following changes since commit af8c34ce6ae32addda3788d54a7e340cad22516b: Linu

[PATCH] ARM: zImage: fix ATAG DTB conversion on big-endian

2016-06-11 Thread Matthew Leach
Since ATAGs are written out by the boot-loader before branching to the kernel, they will be written as little-endian; if the kernel has been built for big-endian, parsing of the ATAGs will fail. When reading from the ATAGs structure, swap the endianness (when required), allowing the DTB to be supp

lib/atomic64_test.c:107:2: error: implicit declaration of function 'atomic64_add_unless'

2016-06-11 Thread kbuild test robot
Hi, FYI, the error/warning still remains. tree: https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git master head: 3d0f0b6a5520878305589411b8d434fe088e4f21 commit: 86a8938078a8bb518c5376de493e348c7490d506 lib: Add self-test for atomic64_t date: 6 years ago config: frv-allmodc

Re: [PATCH v6] r8152: Add support for setting pass through MAC address on RTL8153-AD

2016-06-11 Thread David Miller
From: Andrew Lunn Date: Sat, 11 Jun 2016 17:39:21 +0200 > What is still open is do we want to accept it at all? Do we accept the > concept of putting the same MAC address on multiple interfaces at > hotplug time? Do we trust BIOS vendors to not keep changing DSDT > property name, since it is not

Re: PROBLEM: Resume form hibernate broken by setting NX on gap

2016-06-11 Thread Logan Gunthorpe
Hey Rafael, I tried this patch as well and there was no change. I have a couple tentative observations to make though. None of this is 100% clear to me so please correct me if I'm wrong anywhere: 1) Commit ab76f7b4ab only extends the NX bit between __ex_table and rodata; which, by my underst

Re: [PATCH v2] staging: iio: ad5933: fix order of cycle conditions

2016-06-11 Thread Jonathan Cameron
On 11/06/16 18:25, Lars-Peter Clausen wrote: > On 06/11/2016 06:50 PM, Jonathan Cameron wrote: >> On 01/06/16 20:25, Luis de Bethencourt wrote: >>> Correctly handle the settling time cycles value. The else branch is an >>> impossible condition, > 1022 in the else branch of > 511. Flipping the >>>

Re: [PATCH v2] staging: iio: ad5933: fix order of cycle conditions

2016-06-11 Thread Lars-Peter Clausen
On 06/11/2016 06:50 PM, Jonathan Cameron wrote: > On 01/06/16 20:25, Luis de Bethencourt wrote: >> Correctly handle the settling time cycles value. The else branch is an >> impossible condition, > 1022 in the else branch of > 511. Flipping the order. >> >> Based on the Table 13 at the bottom of Pag

Re: [PATCH v2] iio: Add driver for Silabs si1132, si1141/2/3 and si1145/6/7 ambient light, uv index and proximity sensors

2016-06-11 Thread Jonathan Cameron
On 30/05/16 20:27, Crestez Dan Leonard wrote: > From: Peter Meerwald > > The si114x supports x=1,2,3 IR LEDs for proximity sensing together with > visible and IR ambient light sensing (ALS). > > Newer parts (si1132, si1145/6/7) can measure UV light and compute an UV index > > Signed-off-by: Pet

Re: [Cocci] [PATCH 3/4] scripts: add glimpse.sh for indexing the kernel

2016-06-11 Thread SF Markus Elfring
> Glimpse is a tool you can use to index the kernel. The tool > was recently open sourced under the ISC license and can be > obtained at: How do you think about to mention the script addition also directly in the commit message? > @@ -0,0 +1,12 @@ > +#!/bin/bash > + > +DIR=$(dirname $(readlink -

Re: [PATCH] staging: iio: fix ad7606_spi regression

2016-06-11 Thread Jonathan Cameron
On 30/05/16 14:54, Geert Uytterhoeven wrote: > On Mon, May 30, 2016 at 3:50 PM, Arnd Bergmann wrote: >> As pointed out by Geert Uytterhoeven, the patch was incorrect >> and breaks the driver, which was fortunately pointed out by >> this gcc warning: >> >> drivers/staging/iio/adc/ad7606_spi.c: In f

Re: [RFC 6/7] iio: Refuse to register triggers with duplicate names

2016-06-11 Thread Jonathan Cameron
On 31/05/16 15:03, Lars-Peter Clausen wrote: > On 05/30/2016 02:49 PM, Crestez Dan Leonard wrote: >> On 05/29/2016 10:48 PM, Jonathan Cameron wrote: >>> On 23/05/16 19:40, Crestez Dan Leonard wrote: The trigger name is documented as unique but drivers are currently allowed to register tri

Re: [PATCH v2] staging: iio: ad5933: fix order of cycle conditions

2016-06-11 Thread Jonathan Cameron
On 01/06/16 20:25, Luis de Bethencourt wrote: > Correctly handle the settling time cycles value. The else branch is an > impossible condition, > 1022 in the else branch of > 511. Flipping the order. > > Based on the Table 13 at the bottom of Page 25 of the Data Sheet: > http://www.analog.com/media

Re: [PATCH v4 2/5] clockevents: Add timed freeze

2016-06-11 Thread kbuild test robot
Hi, [auto build test ERROR on pm/linux-next] [also build test ERROR on v4.7-rc2 next-20160609] [if your patch is applied to the wrong git tree, please drop us a note to help improve the system] url: https://github.com/0day-ci/linux/commits/dbasehore-chromium-org/Add-suspend-to-idle-validatio

Re: [PATCH v2] iio: stx104: Add GPIO support for the Apex Embedded Systems STX104

2016-06-11 Thread Jonathan Cameron
On 03/06/16 18:42, William Breathitt Gray wrote: > The Apex Embedded Systems STX104 device features eight lines of digital > I/O (four digital inputs and four digital outputs). This patch adds GPIO > support for these eight lines of digital I/O via GPIOLIB. > > Signed-off-by: William Breathitt Gra

Re: [PATCH] iio: generic_buffer: Fix --trigger-num option

2016-06-11 Thread Jonathan Cameron
On 03/06/16 19:56, Crestez Dan Leonard wrote: > Initialize trig_num to -1 and handle trig_num=0 as a valid id. Good spot. Applied to the togreg branch of iio.git. Thanks, Jonathan > > Fixes: 7c7e9dad (iio: iio_generic_buffer: Add --trigger-num option) > Signed-off-by: Crestez Dan Leonard > ---

Re: [PATCH] mailmap: update Matt Ranostay email address

2016-06-11 Thread Jonathan Cameron
On 06/06/16 04:37, Matt Ranostay wrote: > Set current email address to replace previous employers email addresses. > > Cc: Jonathan Cameron > Cc: Daniel Baluta > Cc: linux-...@vger.kernel.org > Signed-off-by: Matt Ranostay Applied. Didn't even know this existed ;) Jonathan > --- > .mailmap |

Re: PROBLEM: Resume form hibernate broken by setting NX on gap

2016-06-11 Thread Logan Gunthorpe
Hey Rafael, Thank for looking into this. I tried the patch below applied to v4.6 and I still got a lockup on resume. Additionally there was a kernel warning at arch/x86/mm/pageattr.c:1414 change_page_attr_set_clr+0x2bb/0x440 and another one right afterwards at kernel/smp.c:416 smp_call_functi

Re: [PATCH] iio: as3935: improve error reporting in as3935_event_work

2016-06-11 Thread Jonathan Cameron
On 31/05/16 15:53, Andrew F. Davis wrote: > On 05/30/2016 09:52 AM, Arnd Bergmann wrote: >> gcc warns about a potentially uninitialized variable use >> in as3935_event_work: >> >> drivers/iio/proximity/as3935.c: In function ‘as3935_event_work’: >> drivers/iio/proximity/as3935.c:231:6: error: ‘val’

Re: [PATCH] gcc-plugins: disable under COMPILE_TEST

2016-06-11 Thread Paul Gortmaker
[[PATCH] gcc-plugins: disable under COMPILE_TEST] On 11/06/2016 (Sat 09:12) Kees Cook wrote: > Since adding the gcc plugin development headers is required for the > gcc plugin support, we should ease into this new kernel build dependency > more slowly. For now, disable the gcc plugins under COMPI

Re: [PATCH 3/3] iio: mma8452: update Freescale company information

2016-06-11 Thread Jonathan Cameron
On 06/06/16 11:18, Martin Kepplinger wrote: > Am 2016-06-06 um 11:08 schrieb Daniel Baluta: >> On Fri, Jun 3, 2016 at 3:51 PM, Martin Kepplinger wrote: >>> NXP took over Freescale, so add NXP to the driver descriptions >>> >> >> Is it worth to bother with these kind of changes? The part number >>

Re: [PATCH 2/3] iio: mma8452: update device description in header comments

2016-06-11 Thread Jonathan Cameron
On 03/06/16 13:51, Martin Kepplinger wrote: > Signed-off-by: Martin Kepplinger Applied. > --- > drivers/iio/accel/mma8452.c | 16 > 1 file changed, 8 insertions(+), 8 deletions(-) > > diff --git a/drivers/iio/accel/mma8452.c b/drivers/iio/accel/mma8452.c > index 9e679af..4be2a18

Re: [PATCH 1/3] iio: mma8452: update contact information for Martin Kepplinger

2016-06-11 Thread Jonathan Cameron
On 03/06/16 13:51, Martin Kepplinger wrote: > Signed-off-by: Martin Kepplinger Applied to the togreg branch of iio.git Thanks for the update. Jonathan > --- > drivers/iio/accel/mma8452.c | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/drivers/iio/accel/mma8452.c b/driv

Re: [PATCH] iio: inv_mpu6050: Fix use-after-free in ACPI code

2016-06-11 Thread Jonathan Cameron
On 06/06/16 13:33, Daniel Baluta wrote: > On Fri, Jun 3, 2016 at 9:30 PM, Crestez Dan Leonard > wrote: >> In some cases this can result in incorrectly returning a negative value >> from asus_acpi_get_sensor_info and the AK8963 magnetometer failing to >> show up. >> >> Cc: Srinivas Pandruvada >> S

Re: [PATCH] iio: light: isl29125: use iio helper function to guarantee direct mode

2016-06-11 Thread Jonathan Cameron
On 11/06/16 17:05, Jonathan Cameron wrote: > On 11/06/16 16:57, Jonathan Cameron wrote: >> On 07/06/16 06:23, Peter Meerwald-Stadler wrote: >>> Replace the code that guarantees the device stays in direct mode with iio_device_claim_direct_mode() which does same. This allows removal o

Re: [PATCH] iio: light: tcs3472: use iio helper function to guarantee direct mode

2016-06-11 Thread Jonathan Cameron
On 11/06/16 17:03, Jonathan Cameron wrote: > On 07/06/16 06:23, Peter Meerwald-Stadler wrote: >> On Mon, 6 Jun 2016, Alison Schofield wrote: >> >>> Replace the code that guarantees the device stays in direct mode >>> with iio_device_claim_direct_mode() which does same. This allows >>> removal of a

[PATCH] gcc-plugins: disable under COMPILE_TEST

2016-06-11 Thread Kees Cook
Since adding the gcc plugin development headers is required for the gcc plugin support, we should ease into this new kernel build dependency more slowly. For now, disable the gcc plugins under COMPILE_TEST so that all*config builds will skip it. Signed-off-by: Kees Cook --- arch/Kconfig | 1

[PATCH 1/1] btrfs: Use correct format specifier

2016-06-11 Thread Heinrich Schuchardt
Component mirror_num of struct btrfsic_block is defined as unsigned int. Use %u as format specifier. Signed-off-by: Heinrich Schuchardt --- fs/btrfs/check-integrity.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/fs/btrfs/check-integrity.c b/fs/btrfs/check-integrity.c index

Re: [PATCH] iio: light: tcs3414: use iio helper function to guarantee direct mode

2016-06-11 Thread Jonathan Cameron
On 11/06/16 16:56, Jonathan Cameron wrote: > On 07/06/16 06:23, Peter Meerwald-Stadler wrote: >> >>> Replace the code that guarantees the device stays in direct mode >>> with iio_device_claim_direct_mode() which does same. This allows >>> removal of an unused lock in the device private global data

[GIT PULL] Devicetree fixes for 4.7

2016-06-11 Thread Rob Herring
Hi Linus, Please pull DT fixes for 4.7. Details below. Rob The following changes since commit 1a695a905c18548062509178b98bc91e67510864: Linux 4.7-rc1 (2016-05-29 09:29:24 -0700) are available in the git repository at: git://git.kernel.org/pub/scm/linux/kernel/git/robh/linux.git tags/devic

Re: [PATCH] iio: light: isl29125: use iio helper function to guarantee direct mode

2016-06-11 Thread Jonathan Cameron
On 11/06/16 16:57, Jonathan Cameron wrote: > On 07/06/16 06:23, Peter Meerwald-Stadler wrote: >> >>> Replace the code that guarantees the device stays in direct mode >>> with iio_device_claim_direct_mode() which does same. This allows >>> removal of an unused lock in the device private global data

Re: [PATCH] iio: light: tcs3472: use iio helper function to guarantee direct mode

2016-06-11 Thread Jonathan Cameron
On 07/06/16 06:23, Peter Meerwald-Stadler wrote: > On Mon, 6 Jun 2016, Alison Schofield wrote: > >> Replace the code that guarantees the device stays in direct mode >> with iio_device_claim_direct_mode() which does same. This allows >> removal of an unused lock in the device private global data.

<    1   2   3   >