hallo!

2013-08-28 Thread denis
Wir bieten persönliche und geschäftliche Kredite ohne Sicherheiten (nur Identifikation) mit 3 % Zinssatz, von € 20.000 bis € 90,000,000, in 1 Jahr auf 20 Jahre Laufzeit. -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majord...@vger.kernel.o

Re: [PATCH 02/21] fs: remove inline marking of EXPORT_SYMBOL functions

2013-05-09 Thread Denis
On 09.05.2013 12:07, Al Viro wrote: On Thu, May 09, 2013 at 11:58:24AM +0400, Denis Efremov wrote: EXPORT_SYMBOL and inline directives are contradictory to each other. The patch fixes this inconsistency. What makes them contradictory, in your opinion? With references to relevant parts of C99

Re: [PATCH] usb: otg: twl4030-usb: spin_unlock_irq in interrupt handler

2012-08-11 Thread Denis
On 09.08.2012 13:37, Felipe Balbi wrote: Hi, I have pushed a patch which I think solves this issue. Can you test ? Hi, my patch is unneeded since this is a threaded interrupt handler. And it runs with interrupt line masked globally on the controller(because of IRQF_ONESHOT). And I think that

Re: [PATCH] [NETFILTER] bridge: rcu_deref outside read-lock section

2012-08-14 Thread Denis
On 14.08.2012 3:36, Stephen Hemminger wrote: Why not just move the rcu_read_lock() in br_dev_xmit earlier? I don't know the semantics of this code, so it's difficult for me to choose the appropriate place. I thought that the callers of br_nf_pre_routing_finish_bridge_slow function are limited t

Fwd: NFS , Kjournald - status D (uninterruptible sleep) - maquina lenta.

2007-12-14 Thread Denis
0 S0 0.0 0:00.00 scsi_eh_1 389 root 21 0 000 S0 0.0 0:00.00 scsi_eh_2 403 root 15 0 000 D0 0.0 0:03.87 kjournald 1708 root 6 -10 3604 444 364 S0 0.0 0:00.00 udevd Thanks and regards -- Denis Anjos. Cisco Certified Ne

Re: Fwd: NFS , Kjournald - status D (uninterruptible sleep) - maquina lenta.

2007-12-17 Thread Denis
3612 14188 3244 357951200 8 17892 2169 4147 0 4 57 39 0 2 3612 17136 3292 35755200056 28100 4672 16158 0 15 69 16 So, the bo, appears to be the problem. > BTW: I guess the processes wake up eventually, don't they? Yes, they eventually wake up for

[FIRMWARE BUG] Lenovo x120e

2012-11-28 Thread Denis Lotarev
Foundation 1.1 root hub Your sincerely, Denis Lotarev -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majord...@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/

[PATCH] [ALSA] sound: rme32.c irq enabling after spin_lock_irq

2013-02-11 Thread Denis Efremov
According to the other code in this driver and similar code in rme96 it seems, that spin_lock_irq in snd_rme32_capture_close function should be paired with spin_unlock_irq. Found by Linux Driver Verification project (linuxtesting.org). Signed-off-by: Denis Efremov --- sound/pci/rme32.c | 2

[PATCH] ALSA: ali5451: remove irq enabling in pointer callback

2013-02-11 Thread Denis Efremov
snd_ali_pointer function is called with local interrupts disabled. However it seems very strange to reenable them in such way. Found by Linux Driver Verification project (linuxtesting.org). Signed-off-by: Denis Efremov --- sound/pci/ali5451/ali5451.c | 2 +- 1 file changed, 1 insertion(+), 1

[PATCH] ieee802154/at231rf230: deadlock in at86rf230_xmit

2013-02-12 Thread Denis Efremov
// deadlock To prevent it, spin_lock_irq* should be used in xmit callback. Found by Linux Driver Verification project (linuxtesting.org). Signed-off-by: Denis Efremov --- drivers/net/ieee802154/at86rf230.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/drivers/net/i

[PATCH] [SCSI]: megaraid: avoid sleeping on spinlock

2013-02-21 Thread Denis Efremov
GFP_KERNEL may cause pci_pool_alloc() sleep, so we need use GFP_ATOMIC instead of GFP_KERNEL. Found by Linux Driver Verification project (linuxtesting.org). Signed-off-by: Denis Efremov --- drivers/scsi/megaraid/megaraid_mm.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a

[PATCH] fs/char_dev.c: chrdev_open marked static and removed from fs.h

2008-01-31 Thread Denis Cheng
there is an outdated comment in serial_core.c also fixed. Signed-off-by: Denis Cheng <[EMAIL PROTECTED]> --- drivers/serial/serial_core.c |4 ++-- fs/char_dev.c|2 +- include/linux/fs.h |1 - 3 files changed, 3 insertions(+), 4 deletions(-) diff -

[PATCH] fs/dlm/: add __init and __exit marks to init and exit functions

2008-02-01 Thread Denis Cheng
it moves 365 bytes from .text to .init.text, and 30 bytes from .text to .exit.text, saves memory. Signed-off-by: Denis Cheng <[EMAIL PROTECTED]> --- fs/dlm/config.c|2 +- fs/dlm/debug_fs.c |2 +- fs/dlm/lockspace.c |2 +- fs/dlm/memory.c|2 +- fs/dlm/netlink.c

[PATCH] wireless/ath5k: renamed to ath5k_pci_driver to fix Section mismatch warnings

2008-02-01 Thread Denis Cheng
the struct pci_driver refered ath5k_pci_id_table which in __devinit section, the sparse tool suggest this renamed to "*driver", kills mismatch warnings. Signed-off-by: Denis Cheng <[EMAIL PROTECTED]> --- drivers/net/wireless/ath5k/base.c |6 +++--- 1 files changed, 3

[PATCH] ide-core: remove conditional compiling with MODULE in ide-core.c

2008-02-01 Thread Denis Cheng
cs, module parameters also can be input on the kernel command line, with this style: ide-core.options="ide=nodma hdd=cdrom idebus=..." so Documentation/kernel-parameters.txt also updated. Signed-off-by: Denis Cheng <[EMAIL PROTECTED]> --- Documentation/kernel-parameters.txt |

[PATCH] ide-pci-generic: kill the unused ifdef/endif/MODULE code

2008-02-02 Thread Denis Cheng
de-pci-generic.all-generic-ide parameter also documented in Documentation/kernel-parameters.txt Signed-off-by: Denis Cheng <[EMAIL PROTECTED]> --- Documentation/kernel-parameters.txt |3 +++ drivers/ide/pci/Makefile|3 ++- drivers/ide/pci/generic.c |

[PATCH 1/3] uio: Kconfig improvements

2008-02-02 Thread Denis Cheng
Signed-off-by: Denis Cheng <[EMAIL PROTECTED]> --- drivers/uio/Kconfig | 10 +- 1 files changed, 5 insertions(+), 5 deletions(-) diff --git a/drivers/uio/Kconfig b/drivers/uio/Kconfig index b778ed7..d8ab7e6 100644 --- a/drivers/uio/Kconfig +++ b/drivers/uio/Kconfig @@ -1,

[PATCH 2/3] uio: mark pci_device_id hilscher_pci_ids[] __devinitdata

2008-02-02 Thread Denis Cheng
Signed-off-by: Denis Cheng <[EMAIL PROTECTED]> --- drivers/uio/uio_cif.c |2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/drivers/uio/uio_cif.c b/drivers/uio/uio_cif.c index 838bae4..4a5a97e 100644 --- a/drivers/uio/uio_cif.c +++ b/drivers/uio/uio_cif.c @@ -116,7

[PATCH 3/3] uio: vm_operations_struct ->nopage to ->fault method conversion

2008-02-02 Thread Denis Cheng
Signed-off-by: Denis Cheng <[EMAIL PROTECTED]> --- drivers/uio/uio.c | 19 --- 1 files changed, 8 insertions(+), 11 deletions(-) diff --git a/drivers/uio/uio.c b/drivers/uio/uio.c index cc246fa..47e0c32 100644 --- a/drivers/uio/uio.c +++ b/drivers/uio/uio.c @@ -417,30 +

[PATCH] xfs: add __init/__exit mark to specific init/cleanup functions

2008-02-02 Thread Denis Cheng
Signed-off-by: Denis Cheng <[EMAIL PROTECTED]> --- fs/xfs/linux-2.6/xfs_super.c |2 +- fs/xfs/linux-2.6/xfs_vnode.c |2 +- fs/xfs/support/ktrace.c |4 ++-- fs/xfs/support/uuid.c|2 +- fs/xfs/xfs_vfsops.c |4 ++-- 5 files changed, 7 insertions

[PATCH] drivers/block/: add __devinitdata to all pci_device_id table of block drivers

2008-02-02 Thread Denis Cheng
Signed-off-by: Denis Cheng <[EMAIL PROTECTED]> --- drivers/block/DAC960.c |2 +- drivers/block/cciss.c|2 +- drivers/block/cpqarray.c |2 +- drivers/block/sx8.c |2 +- drivers/block/umem.c |2 +- 5 files changed, 5 insertions(+), 5 deletions(-) diff -

Re: [PATCH] check the kzalloc return value

2012-10-23 Thread Denis Kirjanov
I'll resubmit a new patch. Thanks! On 10/23/12, Borislav Petkov wrote: > On Mon, Oct 22, 2012 at 07:56:04PM +0400, Denis Kirjanov wrote: >> > > Needs a commit message. > >> Signed-off-by: Denis Kirjanov >> --- >> drivers/edac/edac_mc_sysfs.c |3 +

[PATCH 1/2] handle error path in edac_mc_sysfs_init()

2012-10-25 Thread Denis Kirjanov
Handle errors on edac_mc_sysfs_init()'s error path Signed-off-by: Denis Kirjanov --- drivers/edac/edac_mc_sysfs.c | 14 -- 1 file changed, 12 insertions(+), 2 deletions(-) diff --git a/drivers/edac/edac_mc_sysfs.c b/drivers/edac/edac_mc_sysfs.c index ed0bc07..ea34ece 100644

[PATCH 2/2] don't leak memory for mci_pdev

2012-10-25 Thread Denis Kirjanov
Don't leak allocated memory for mci_pdev Signed-off-by: Denis Kirjanov --- drivers/edac/edac_mc_sysfs.c |5 - 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/drivers/edac/edac_mc_sysfs.c b/drivers/edac/edac_mc_sysfs.c index ea34ece..689d7ba 100644 --- a/drivers

Re: [PATCH 2/2] xhci: EHCI/XHCI ports switching on Intense-PC.

2012-07-31 Thread Denis Turischev
Hi Sarah, Attached dmidecode output of Intense-PC. Denis Turischev On 07/31/2012 01:34 AM, Sarah Sharp wrote: > Hi Denis, > > Can you send me the output of `sudo dmidecode`? I'd like to see if I > can make a more general patch apply to the Intense-PC. > > Sarah Sha

[PATCH v2] tmscsim: spin_unlock_irq in interrupt handler fix

2012-07-31 Thread Denis Efremov
The replacement of spin_lock_irq/spin_unlock_irq pairs which can be called from interrupt handler by irqsave/irqrestore versions. Found by Linux Driver Verification project (linuxtesting.org). Signed-off-by: Denis Efremov --- drivers/scsi/tmscsim.c | 12 ++-- drivers/scsi/tmscsim.h

drivers/misc/apds990x.c: might_sleep operation in interrupt handler

2012-07-31 Thread Denis Yefremov
Interrupt handler apds990x_irq in APDS990x sensor driver invokes mutex_lock that is might sleep operation. Found by Linux Driver Verification project (linuxtesting.org) within my participation in the GSoC 2012 program. static irqreturn_t apds990x_irq(int irq, void *data) { struct apds99

wlcore: might_sleep operation in interrupt handler

2012-07-31 Thread Denis Yefremov
Interrupt handler wlcore_irq in wlcore/main.c file invokes mutex_lock that is might sleep operation. Found by Linux Driver Verification project (linuxtesting.org) within my participation in the GSoC 2012 program. drivers/net/wireless/ti/wlcore/main.c static irqreturn_t wlcore_irq(int irq, void *

Re: wlcore: might_sleep operation in interrupt handler

2012-07-31 Thread Denis Yefremov
rqflags = IRQF_TRIGGER_HIGH | IRQF_ONESHOT; ret = request_threaded_irq(wl->irq, wl12xx_hardirq, wlcore_irq, irqflags, pdev->name, wl); 2012/8/1 Johannes Berg : > On Tue, 2012-07-31 at 22:28 +0400, Denis Yefremov wrote: >

Re: [PATCH 32/38] iio: accel-core: st: Move LSM303DLH into correct group

2013-09-16 Thread Denis CIOCCA
another type entry to deal with this >> one. > Hmmm... on initial thought, I don't know how we can handle this one. I > assumed the WAIs were a one-stop-shop for device identification. I also > thought that they would only match if the functionality and register > maps woul

Re: [PATCH 14/38] iio: accel: st: Append _accel to accelerator sensor device names

2013-09-16 Thread Denis CIOCCA
;> >> Sorry Lee, but we really shouldn't do this. I should have picked up on this >> in the original driver reviews but that's hindsight for you. > I think those with the suffix are the ones where you have accel and gyro in > the same package, the ones without the suffix

Re: [PATCH 38/38] iio: magn-core: st: Provide support for the LSM303DLH

2013-09-16 Thread Denis CIOCCA
eter use different kind of WAI registers. This driver read 0x0f and in this case the value is 0 and the driver do not probe...You have to read the identification registers (0x0a, 0x0b, 0x0c) in that case. Denis

Re: [PATCH 32/38] iio: accel-core: st: Move LSM303DLH into correct group

2013-09-16 Thread Denis CIOCCA
;ll revert the patch and > work something else out. I've tried with real device...Unfortunately, you are right for name on the package... So, are you using the LSM303DLHC? Denis

Re: [PATCH 38/38] iio: magn-core: st: Provide support for the LSM303DLH

2013-09-16 Thread Denis CIOCCA
s datasheet again > and the attached device isn't actually a LSM303DLH, but how can I tell > for sure? On LSM303DLH you have to read 0x0a 0x0b and 0x0c registers, you have to find 0x48, 0x34 and 0x33. I think in the snowball there is the LSM303DLHC. Denis

Re: [PATCH 32/38] iio: accel-core: st: Move LSM303DLH into correct group

2013-09-16 Thread Denis CIOCCA
SKY-S9500-ULP-XXX/C12-SDK/SCH-00103-B11.pdf > Mhh...I saw the LSM303DLHC... The LSM303DLH is not populated, there is only the footprint but is not soldered... Denis

Re: [PATCH 06/11] iio: pressure-core: st: Expand and rename LPS331AP's channel descriptor

2013-09-04 Thread Denis CIOCCA
For that reason we're > expanding the array so initialisation is completed in full. Also for this one, the channel names are general and can be shared between different sensors. For the channel definition it's not a problem for me, but I think it's not necessary adds all that co

Re: [PATCH 07/11] iio: sensors-core: st: Allow full-scale to be an optional feature

2013-09-04 Thread Denis CIOCCA
Acked-by: Denis Ciocca > Some chips either don't support it or fail to provide adequate documentation, > so sometimes it's impossible to enable the feature even if it is supported. > > Signed-off-by: Lee Jones > --- > drivers/iio/common/st_sensors/st_sensors_core.c

Re: [PATCH 08/11] iio: pressure-core: st: Allow for number of channels to vary

2013-09-04 Thread Denis CIOCCA
Acked-by: Denis Ciocca > At the moment the number of channels specified is dictated by the first > sensor supported by the driver. As we add support for more sensors this > is likely to vary. Instead of using the ARRAY_SIZE() of the LPS331AP's > channel specifier we'll use a

Re: [PATCH 05/11] iio: pressure-core: st: Describe LPS331AP defines by name

2013-09-04 Thread Denis CIOCCA
). Often some sensors can use the same data and using 1,2,... I think it's more general. Denis > Signed-off-by: Lee Jones > --- > drivers/iio/pressure/st_pressure_core.c | 90 > - > 1 file changed, 44 insertions(+), 46 deletions

Re: [PATCH 06/11] iio: pressure-core: st: Expand and rename LPS331AP's channel descriptor

2013-09-05 Thread Denis CIOCCA
n this driver now is used only for the lps331ap but for example in accelerometer driver is used by several sensors. It's possible in the future for new pressure sensors use the same channels definition. The channel definition is intended the switch by macro ST_SENSORS_LSM_CHANNELS to the full d

Re: [PATCH 06/11] iio: pressure-core: st: Expand and rename LPS331AP's channel descriptor

2013-09-05 Thread Denis CIOCCA
Lee, I got your point. For me is ok... Denis > On Thu, 05 Sep 2013, Denis CIOCCA wrote: > >>>>> Due to the MACRO used, the task of reading, understanding and maintaining >>>>> the LPS331AP's channel descriptor is substantially difficult. This patch >&

Re: [PATCH 2/2] staging: zram: remove init_done from zram struct

2013-09-06 Thread Denis Kirjanov
> } > > - zram->init_done = 0; > + zram->meta = NULL; > return 0; > > out_free_disk: > diff --git a/drivers/staging/zram/zram_drv.h > b/drivers/staging/zram/zram_drv.h > index 97a3acf..b1100cf 100644 > --- a/drivers/staging/zram/zram_drv.h

Re: [ 12/95] xhci: Switch PPT ports to EHCI on shutdown.

2012-09-10 Thread Denis Turischev
Hi Ben, As reported by Robert Hancock there is a typo in if statement below. Do you want I resubmit it? Or should we wait for Sarah Sharp review? Denis Turischev On 09/10/2012 01:42 AM, Ben Hutchings wrote: > 3.2-stable review patch. If anyone has any objections, please let me k

[PATCH] check for the kzalloc return value

2012-10-22 Thread Denis Kirjanov
Signed-off-by: Denis Kirjanov --- sound/pci/als300.c |4 1 file changed, 4 insertions(+) diff --git a/sound/pci/als300.c b/sound/pci/als300.c index 68c4469..e1f74d4 100644 --- a/sound/pci/als300.c +++ b/sound/pci/als300.c @@ -394,6 +394,8 @@ static int snd_als300_playback_open(struct

[PATCH RESEND net-next] bluetooth: hci_core: Replace list_for_each with list_for_each_entry() helper

2012-10-22 Thread Denis Kirjanov
Replace list_for_each with list_for_each_entry() helper Signed-off-by: Denis Kirjanov --- include/net/bluetooth/hci_core.h | 20 1 files changed, 8 insertions(+), 12 deletions(-) diff --git a/include/net/bluetooth/hci_core.h b/include/net/bluetooth/hci_core.h index

[PATCH] edac: fix buffer overrun if no suitable bandwidth found

2012-10-22 Thread Denis Kirjanov
fix buffer overrun if no suitable bandwidth found Signed-off-by: Denis Kirjanov --- drivers/edac/amd64_edac.c |3 +++ 1 file changed, 3 insertions(+) diff --git a/drivers/edac/amd64_edac.c b/drivers/edac/amd64_edac.c index 5a297a2..d85ad9e 100644 --- a/drivers/edac/amd64_edac.c +++ b

[PATCH] check the kzalloc return value

2012-10-22 Thread Denis Kirjanov
Signed-off-by: Denis Kirjanov --- drivers/edac/edac_mc_sysfs.c |3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/drivers/edac/edac_mc_sysfs.c b/drivers/edac/edac_mc_sysfs.c index ed0bc07..55ce016 100644 --- a/drivers/edac/edac_mc_sysfs.c +++ b/drivers/edac/edac_mc_sysfs.c

[PATCH] usb: otg: remove exported function from __init section

2013-04-18 Thread Denis Efremov
The symbol usb_bind_phy is exported and annotated __init. It looks like section mismatch. Fix by removing the __init annotation of usb_bind_phy. Found by Linux Driver Verification project (linuxtesting.org). Signed-off-by: Denis Efremov --- drivers/usb/otg/otg.c | 2 +- 1 file changed, 1

gpio: introduce gpio-fch driver for AMD A45/A50M/A55E Fusion Controller Hub

2013-07-04 Thread Denis Turischev
Signed-off-by: Denis Turischev diff -uprN linux-3.10.orig/drivers/gpio/gpio-fch.c linux-3.10/drivers/gpio/gpio-fch.c --- linux-3.10.orig/drivers/gpio/gpio-fch.c 1970-01-01 02:00:00.0 +0200 +++ linux-3.10/drivers/gpio/gpio-fch.c 2013-07-04 15:35:50.020672040 +0300 @@ -0,0 +1,247

Re: [PATCH] staging: lirc: remove dead code

2013-03-25 Thread Denis Kirjanov
SA1100_BITSY > - if (machine_is_bitsy()) > - clr_bitsy_egpio(EGPIO_BITSY_IR_ON); > -#endif > #ifdef CONFIG_SA1100_COLLIE > sa1100_irda_set_power_collie(0);/* power off */ > #endif > -- > 1.7.11.7 > > _

Re: [PATCH] staging: lirc: remove dead code

2013-03-25 Thread Denis Kirjanov
Greg, looks like you have missed it in the queue for 3.8-rc1 On 3/25/13, Paul Bolle wrote: > On Mon, 2013-03-25 at 13:40 +0400, Denis Kirjanov wrote: >> Just found that the exactly the same patch has been posted a while ago: >> http://driverdev.linuxdriverproject.org/piper

[build failure] perf

2013-07-29 Thread Denis Kirjanov
Hi, I'm having a problem compiling perf(mainline 3.11.0-rc3) on the old x86 box, probably something wrong with the lex on my system: CC util/parse-events.o cc1: warnings being treated as errors util/parse-events.c: In function 'parse_events__scanner': util/parse-events.c:829: warning: implici

Re: [build failure] perf

2013-07-30 Thread Denis Kirjanov
rules util/session.c:715: warning: dereferencing type-punned pointer will break strict-aliasing rules I was thinking about that something is wrong with u64 datatype but on the other hand I can build it on my ppc32 system with gcc 4.5.4... On 7/29/13, Denis Kirjanov wrote: > Hi, > > I

Re: [PATCH] iio: STMicroelectronics: remove three useless selects

2013-05-14 Thread Denis CIOCCA
Hi Paul, Acked-by: Denis Ciocca Thanks, Denis On Tuesday, May 14, 2013 11:05:50 AM Paul Bolle wrote: > Drivers for STMicroelectronics accelerometers, gyroscopes, and > magnetometers were added in v3.9. They all have a (similar) select > statement in their Kconfig files for a non

[PATCH] clk: fixed-factor: remove exported function from __init section

2013-05-06 Thread Denis Efremov
The symbol of_fixed_factor_clk_setup is exported and annotated __init. It looks like section mismatch. Fix by removing the __init annotation of of_fixed_factor_clk_setup. The patch is similar to e4eda8e06. Found by Linux Driver Verification project (linuxtesting.org). Signed-off-by: Denis

[PATCH 00/21] Exported funtions that are marked inline

2013-05-09 Thread Denis Efremov
Hello everyone, this is a patchset to remove inline marking of exported functions. Patchset is motivated by https://lkml.org/lkml/2012/5/10/545 (af3b56289) I run some tests and inspect the binaries. (You can find the tests here: https://bitbucket.org/evdenis/tests/src) And it seems (at least on my

[PATCH 01/21] [SCSI] libiscsi: remove inline marking of EXPORT_SYMBOL functions

2013-05-09 Thread Denis Efremov
EXPORT_SYMBOL and inline directives are contradictory to each other. The patch fixes this inconsistency. Found by Linux Driver Verification project (linuxtesting.org). Signed-off-by: Denis Efremov --- drivers/scsi/libiscsi.c | 2 +- drivers/scsi/libiscsi_tcp.c | 8 2 files changed

[PATCH 02/21] fs: remove inline marking of EXPORT_SYMBOL functions

2013-05-09 Thread Denis Efremov
EXPORT_SYMBOL and inline directives are contradictory to each other. The patch fixes this inconsistency. Found by Linux Driver Verification project (linuxtesting.org). Signed-off-by: Denis Efremov --- fs/bio.c | 2 +- fs/block_dev.c | 2 +- fs/buffer.c| 2 +- 3 files changed, 3

[PATCH 03/21] x86: remove inline marking of EXPORT_SYMBOL functions

2013-05-09 Thread Denis Efremov
EXPORT_SYMBOL and inline directives are contradictory to each other. The patch fixes this inconsistency. Found by Linux Driver Verification project (linuxtesting.org). Signed-off-by: Denis Efremov --- arch/x86/lib/delay.c | 2 +- arch/x86/um/delay.c | 2 +- 2 files changed, 2 insertions(+), 2

[PATCH 04/21] NFC: remove inline marking of EXPORT_SYMBOL functions

2013-05-09 Thread Denis Efremov
EXPORT_SYMBOL and inline directives are contradictory to each other. The patch fixes this inconsistency. Found by Linux Driver Verification project (linuxtesting.org). Signed-off-by: Denis Efremov --- net/nfc/core.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/net/nfc

[PATCH 05/21] 9p: remove inline marking of EXPORT_SYMBOL functions

2013-05-09 Thread Denis Efremov
EXPORT_SYMBOL and inline directives are contradictory to each other. The patch fixes this inconsistency. Found by Linux Driver Verification project (linuxtesting.org). Signed-off-by: Denis Efremov --- net/9p/client.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/net

[PATCH 06/21] staging: nvec: remove inline marking of EXPORT_SYMBOL functions

2013-05-09 Thread Denis Efremov
EXPORT_SYMBOL and inline directives are contradictory to each other. The patch fixes this inconsistency. Found by Linux Driver Verification project (linuxtesting.org). Signed-off-by: Denis Efremov --- drivers/staging/nvec/nvec.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git

[PATCH 07/21] netfilter: nf_nat: remove inline marking of EXPORT_SYMBOL functions

2013-05-09 Thread Denis Efremov
EXPORT_SYMBOL and inline directives are contradictory to each other. The patch fixes this inconsistency. Found by Linux Driver Verification project (linuxtesting.org). Signed-off-by: Denis Efremov --- net/netfilter/nf_nat_core.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git

[PATCH 08/21] iwlegacy: remove inline marking of EXPORT_SYMBOL functions

2013-05-09 Thread Denis Efremov
EXPORT_SYMBOL and inline directives are contradictory to each other. The patch fixes this inconsistency. Found by Linux Driver Verification project (linuxtesting.org). Signed-off-by: Denis Efremov --- drivers/net/wireless/iwlegacy/common.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion

[PATCH 09/21] dw_dmac: remove inline marking of EXPORT_SYMBOL functions

2013-05-09 Thread Denis Efremov
EXPORT_SYMBOL and inline directives are contradictory to each other. The patch fixes this inconsistency. Found by Linux Driver Verification project (linuxtesting.org). Signed-off-by: Denis Efremov --- drivers/dma/dw_dmac.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a

[PATCH 10/21] mm: filemap: remove inline marking of EXPORT_SYMBOL functions

2013-05-09 Thread Denis Efremov
EXPORT_SYMBOL and inline directives are contradictory to each other. The patch fixes this inconsistency. Found by Linux Driver Verification project (linuxtesting.org). Signed-off-by: Denis Efremov --- mm/filemap.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mm/filemap.c

[PATCH 11/21] ipv4: ip_output: remove inline marking of EXPORT_SYMBOL functions

2013-05-09 Thread Denis Efremov
EXPORT_SYMBOL and inline directives are contradictory to each other. The patch fixes this inconsistency. Found by Linux Driver Verification project (linuxtesting.org). Signed-off-by: Denis Efremov --- net/ipv4/ip_output.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/net

[PATCH 12/21] metag: delay: remove inline marking of EXPORT_SYMBOL functions

2013-05-09 Thread Denis Efremov
EXPORT_SYMBOL and inline directives are contradictory to each other. The patch fixes this inconsistency. Found by Linux Driver Verification project (linuxtesting.org). Signed-off-by: Denis Efremov --- arch/metag/lib/delay.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a

[PATCH 13/21] openrisc: delay: remove inline marking of EXPORT_SYMBOL functions

2013-05-09 Thread Denis Efremov
EXPORT_SYMBOL and inline directives are contradictory to each other. The patch fixes this inconsistency. Found by Linux Driver Verification project (linuxtesting.org). Signed-off-by: Denis Efremov --- arch/openrisc/lib/delay.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a

[PATCH 14/21] arm64: delay: remove inline marking of EXPORT_SYMBOL functions

2013-05-09 Thread Denis Efremov
EXPORT_SYMBOL and inline directives are contradictory to each other. The patch fixes this inconsistency. Found by Linux Driver Verification project (linuxtesting.org). Signed-off-by: Denis Efremov --- arch/arm64/lib/delay.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a

[PATCH 15/21] arch/tile: remove inline marking of EXPORT_SYMBOL functions

2013-05-09 Thread Denis Efremov
EXPORT_SYMBOL and inline directives are contradictory to each other. The patch fixes this inconsistency. Found by Linux Driver Verification project (linuxtesting.org). Signed-off-by: Denis Efremov --- arch/tile/lib/spinlock_32.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git

[PATCH 16/21] sparc: remove inline marking of EXPORT_SYMBOL functions

2013-05-09 Thread Denis Efremov
EXPORT_SYMBOL and inline directives are contradictory to each other. The patch fixes this inconsistency. Found by Linux Driver Verification project (linuxtesting.org). Signed-off-by: Denis Efremov --- arch/sparc/prom/tree_64.c | 14 +++--- 1 file changed, 7 insertions(+), 7 deletions

[PATCH 17/21] CRISv32: remove inline marking of EXPORT_SYMBOL functions

2013-05-09 Thread Denis Efremov
EXPORT_SYMBOL and inline directives are contradictory to each other. The patch fixes this inconsistency. Found by Linux Driver Verification project (linuxtesting.org). Signed-off-by: Denis Efremov --- arch/cris/arch-v32/kernel/cache.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff

[PATCH 18/21] m68k/sun3/: remove inline marking of EXPORT_SYMBOL functions

2013-05-09 Thread Denis Efremov
EXPORT_SYMBOL and inline directives are contradictory to each other. The patch fixes this inconsistency. Found by Linux Driver Verification project (linuxtesting.org). Signed-off-by: Denis Efremov --- arch/m68k/sun3/sun3dvma.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a

[PATCH 19/21] MIPS: MSP71xx: remove inline marking of EXPORT_SYMBOL functions

2013-05-09 Thread Denis Efremov
EXPORT_SYMBOL and inline directives are contradictory to each other. The patch fixes this inconsistency. Found by Linux Driver Verification project (linuxtesting.org). Signed-off-by: Denis Efremov --- arch/mips/pmcs-msp71xx/msp_prom.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff

[PATCH 20/21] powerpc/ps3: remove inline marking of EXPORT_SYMBOL functions

2013-05-09 Thread Denis Efremov
EXPORT_SYMBOL and inline directives are contradictory to each other. The patch fixes this inconsistency. Found by Linux Driver Verification project (linuxtesting.org). Signed-off-by: Denis Efremov --- arch/powerpc/platforms/ps3/spu.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff

[PATCH 21/21] ARM: remove inline marking of EXPORT_SYMBOL functions

2013-05-09 Thread Denis Efremov
EXPORT_SYMBOL and inline directives are contradictory to each other. The patch fixes this inconsistency. Found by Linux Driver Verification project (linuxtesting.org). Signed-off-by: Denis Efremov --- arch/arm/mach-sa1100/jornada720_ssp.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion

Re: [PATCH 1/1] Staging: bcm: Fix of various code style issues.

2013-05-21 Thread Denis Kirjanov
ction. > -// numOfBytes - Write num Bytes after reading from pBuffer. > -// > -// Returns: > -// STATUS_SUCCESS/STATUS_FAILURE > -// > -//-- > +/* > + * Procedure:vendorextnWriteSectionWitho

Re: [PATCH 1/2] ethernet: dm9000 driver: davicom: upgrade driver: 3rd trial

2013-03-27 Thread Denis Kirjanov
It's not clear from your log what was wrong with the driver. Could you please update the log message. On 3/27/13, Joseph CHANG wrote: > Fixing bug for DM9000B(DSP) which is a DSP revision! 3rd trial. > > Tested to Davicom DM9000 series include DM9000E(analog), > DM9000A(analog), DM9000B(DSP), and

Re: Fw: Bug in ks8851.c

2013-03-29 Thread Denis Kirjanov
please respin this patch with a commit description. On 3/29/13, max.neklu...@us.elster.com wrote: > > Linus, > > I tried to send the mail to 'Ben Dooks ' but the address > is dead now. >> I assume you've tested it in practice? > Yes, I'm running the modified code both in bootloader and Linux kern

Re: wlcore: might_sleep operation in interrupt handler

2012-08-01 Thread Denis Yefremov
Sorry. My mistake. In this case it seems that sleep functions can be called from thread_fn, since interrupt line is disabled globally. And nothing bad will happen if you know that device can be blocked for relatively long time. -- To unsubscribe from this list: send the line "unsubscribe linux-kern

Re: drivers/misc/apds990x.c: might_sleep operation in interrupt handler

2012-08-01 Thread Denis Yefremov
Sorry. My mistake. In this case it seems that sleep functions can be called from apds990x_irq, since interrupt line is disabled globally (because of IRQF_ONESHOT). And nothing bad will happen if you know that device can be blocked for relatively long time. 2012/7/31 Denis Yefremov : > Interr

Re: [RFT] xhci: Switch PPT ports to EHCI on shutdown.

2012-08-09 Thread Denis Turischev
Hi Sarah, Yes, it fixes unexpected wake-up on Intense-PC. Thanks! Denis. On 08/07/2012 08:39 PM, Sarah Sharp wrote: > The Intel desktop boards DH77EB and DH77DF have a hardware issue that > can be worked around by BIOS. If the USB ports are switched to xHCI on > shutdown, the xHCI

[PATCH] macvtap: rcu_dereference outside read-lock section

2012-08-11 Thread Denis Efremov
In this case it is not an error. rcu_dereference occurs in update section. Replacement by rcu_dereference_protected (with spinlock) in order to prevent lockdep complaint. Found by Linux Driver Verification project (linuxtesting.org) Signed-off-by: Denis Efremov --- drivers/net/macvtap.c |3

[PATCH v2] macvtap: rcu_dereference outside read-lock section

2012-08-11 Thread Denis Efremov
rcu_dereference occurs in update section. Replacement by rcu_dereference_protected in order to prevent lockdep complaint. Found by Linux Driver Verification project (linuxtesting.org) Signed-off-by: Denis Efremov --- drivers/net/macvtap.c |3 ++- 1 files changed, 2 insertions(+), 1

[PATCH] md/linear: rcu_dereference outside read-lock section

2012-08-13 Thread Denis Efremov
According to the comment in linear_stop function rcu_dereference in linear_start and linear_stop functions occurs under reconfig_mutex. The patch represents this agreement in code and prevents lockdep complaint. Found by Linux Driver Verification project (linuxtesting.org) Signed-off-by: Denis

[PATCH] [NETFILTER] bridge: rcu_deref outside read-lock section

2012-08-13 Thread Denis Efremov
ase there is no read-lock section. I have put lock/unlock in br_nf_pre_routing_finish_bridge_slow, as the only function that calls it(for now) - is br_dev_xmit. Found by Linux Driver Verification project (linuxtesting.org). Signed-off-by: Denis Efremov --- include/linux/netfilter_bridge.h |6

[PATCH v2] bridge: rcu_deref outside read-lock section

2012-08-14 Thread Denis Efremov
ase there is no read-lock section. Found by Linux Driver Verification project (linuxtesting.org). Signed-off-by: Denis Efremov --- net/bridge/br_device.c |2 ++ 1 files changed, 2 insertions(+), 0 deletions(-) diff --git a/net/bridge/br_device.c b/net/bridge/br_device.c index 3334845..f9ae0

[PATCH] forcedeth: spin_unlock_irq in interrupt handler fix

2012-07-20 Thread Denis Efremov
The replacement of spin_lock_irq/spin_unlock_irq pair in interrupt handler by spin_lock_irqsave/spin_lock_irqrestore pair. Found by Linux Driver Verification project (linuxtesting.org). Signed-off-by: Denis Efremov --- drivers/net/ethernet/nvidia/forcedeth.c |4 ++-- 1 files changed, 2

[PATCH] tmscsim: spin_unlock_irq in interrupt handler fix

2012-07-20 Thread Denis Efremov
The replacement of spin_lock_irq/spin_unlock_irq pair in interrupt handler by spin_lock_irqsave/spin_lock_irqrestore pair. Found by Linux Driver Verification project (linuxtesting.org). Signed-off-by: Denis Efremov --- drivers/scsi/tmscsim.c |5 +++-- 1 files changed, 3 insertions(+), 2

[PATCH] usb: otg: twl4030-usb: spin_unlock_irq in interrupt handler

2012-07-21 Thread Denis Efremov
Linux Driver Verification project (linuxtesting.org). Signed-off-by: Denis Efremov --- drivers/usb/otg/twl4030-usb.c |5 +++-- 1 files changed, 3 insertions(+), 2 deletions(-) diff --git a/drivers/usb/otg/twl4030-usb.c b/drivers/usb/otg/twl4030-usb.c index c4a86da..c89a2f5 100644 --- a/drivers

[PATCH 1/2] xhci: provide usb_disable_xhci_ports function for Intel chipsets.

2012-07-23 Thread Denis Turischev
Some devices with Intel Panther Point chipset may require switchover usb ports from XHCI back to EHCI controller before shutdown. Overwise various BIOS bugs related to power management may be triggered. Signed-off-by: Denis Turischev --- drivers/usb/host/pci-quirks.c | 14

[PATCH 2/2] xhci: EHCI/XHCI ports switching on Intense-PC.

2012-07-23 Thread Denis Turischev
erved. Switching back to EHCI solves the problem. The patch switches usb ports back to EHCI during xhci shutdown for Intense-PC. Signed-off-by: Denis Turischev --- drivers/usb/host/xhci.c | 14 ++ 1 file changed, 14 insertions(+) diff --git a/drivers/usb/host/xhci.c b/drivers/usb/host/x

[PATCH 1/2 v2] xhci: provide usb_disable_xhci_ports function for Intel chipsets.

2012-07-23 Thread Denis Turischev
Some devices with Intel Panther Point chipset may require switchover usb ports from XHCI back to EHCI controller before shutdown. Otherwise various BIOS bugs related to power management may be triggered. v2: deleted unnecessary variables. Signed-off-by: Denis Turischev --- drivers/usb/host/pci

Re: [PATCH 2/2] xhci: EHCI/XHCI ports switching on Intense-PC.

2012-07-24 Thread Denis Turischev
Sarah Sharp > > On Mon, Jul 23, 2012 at 02:46:32PM +0300, Denis Turischev wrote: >> Intense-PC is Compulab's mini-desktop with Intel Panther Point >> chipset. >> >> Unconditional switchover to xHCI provided by function >> usb_enable_xhci_ports() leads to sur

[PATCH] tcm_fc: rcu_deref outside rcu lock/unlock section

2012-08-18 Thread Denis Efremov
Use rcu_dereference_protected in order to prevent lockdep complaint. Sequel of the patch 863555be Found by Linux Driver Verification project (linuxtesting.org). Signed-off-by: Denis Efremov --- drivers/target/tcm_fc/tfc_sess.c |4 +++- 1 files changed, 3 insertions(+), 1 deletions(-) diff

[PATCH 1/2] [GFS2] remove gfs2_dev_iops

2008-02-25 Thread Denis Cheng
struct inode_operations gfs2_dev_iops is always the same as gfs2_file_iops, since Jan 2006, when GFS2 merged into mainstream kernel. So one of them could be removed. Signed-off-by: Denis Cheng <[EMAIL PROTECTED]> --- fs/gfs2/inode.c |2 +- fs/gfs2/ops_inode.c | 10 -- f

[PATCH 2/2] [GFS2] re-support special inode

2008-02-25 Thread Denis Cheng
, block device file, fifo pipe, and socket file, lose many important features as a common file system. this one line patch re add special inode support. Signed-off-by: Denis Cheng <[EMAIL PROTECTED]> --- fs/gfs2/inode.c |1 + 1 files changed, 1 insertions(+), 0 deletions(-) diff --git a/f

[PATCH] [IPMI] remove unused target and action in Makefile

2008-02-26 Thread Denis Cheng
Kbuild system handle this automatically. Signed-off-by: Denis Cheng <[EMAIL PROTECTED]> --- drivers/char/ipmi/Makefile |4 1 files changed, 0 insertions(+), 4 deletions(-) diff --git a/drivers/char/ipmi/Makefile b/drivers/char/ipmi/Makefile index 553f0a4..eb8a1a8 100644 --- a/d

[PATCH] clk: remove exported function from __init section

2013-01-06 Thread Denis Efremov
The symbol of_fixed_clk_setup is exported and annotated __init. This looks like section mismatch. Fix this by removing the __init annotation of of_fixed_clk_setup. Signed-off-by: Denis Efremov --- drivers/clk/clk-fixed-rate.c |2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git

  1   2   3   4   5   6   7   8   9   10   >