[PATCH v3 00/15] checkpatch clean-up of rtl8723au's rtw_security.c

2015-03-18 Thread M. Vefa Bicakci
d: - Reformat whitespace to increase readability - Fix "before/around/after" whitespace issues - Rework two byte array comparisons M. Vefa Bicakci (15): staging: rtl8723au: Reformat whitespace to increase readability staging: rtl8723au: Fix "before/around/after" whit

[PATCH v3 10/15] staging: rtl8723au: No spaces at the start of a line

2015-03-18 Thread M. Vefa Bicakci
line Signed-off-by: M. Vefa Bicakci --- drivers/staging/rtl8723au/core/rtw_security.c | 140 +- 1 file changed, 70 insertions(+), 70 deletions(-) diff --git a/drivers/staging/rtl8723au/core/rtw_security.c b/drivers/staging/rtl8723au/core/rtw_security.c index 0557a

Re: [PATCH 01/16] staging: rtl8723au: Reformat whitespace to increase readability

2015-03-13 Thread M. Vefa Bicakci
their names as the maintainers, and based on the commit history, they are the major contributors and/or gate-keepers to this staging driver.) Actually, my first name is Vefa, and the "M" is for my middle name, for which I only use an initial, as otherwise everyone ends up addressing me with

[PATCH 0/1] ARM: dts: rockchip: disable gmac by default in rk3288.dtsi

2015-03-13 Thread Alexandru M Stan
(http://www.spinics.net/lists/arm-kernel/msg403629.html) to GPLv2/X11. Alexandru M Stan (1): ARM: dts: rockchip: disable gmac by default in rk3288.dtsi arch/arm/boot/dts/rk3288.dtsi | 1 + 1 file changed, 1 insertion(+) -- 2.2.0.rc0.207.ga3a616c -- To unsubscribe from this list: send the

[PATCH] ARM: dts: rockchip: disable gmac by default in rk3288.dtsi

2015-03-13 Thread Alexandru M Stan
This block should not be enabled by default or else if the kconfig is set, it will try to load/probe even if there's no phy connected. Signed-off-by: Alexandru M Stan --- arch/arm/boot/dts/rk3288.dtsi | 1 + 1 file changed, 1 insertion(+) diff --git a/arch/arm/boot/dts/rk3288.dtsi b/arc

Re: [PATCH 14/16] staging: rtl8723au: Improve readability of two very long lines

2015-03-14 Thread M. Vefa Bicakci
On 13/03/15 12:24 PM, Joe Perches wrote: > On Fri, 2015-03-13 at 10:44 -0500, Larry Finger wrote: >> On 03/12/2015 10:15 PM, M. Vefa Bicakci wrote: >>> Improve the readability of an if statement and its very long trace >>> output line in rtl8723au's rtw_security.

[PATCH v2 03/16] staging: rtl8723au: else should follow close brace

2015-03-14 Thread M. Vefa Bicakci
Correct checkpatch.pl errors in rtl8723au's rtw_security.c indicating that an else statement should follow the closing brace of the previous if/else if code block: ERROR: else should follow close brace '}' Signed-off-by: M. Vefa Bicakci --- drivers/staging/rtl8723au/core

[PATCH v2 05/16] staging: rtl8723au: Reorganize a few functions to remove indentation

2015-03-14 Thread M. Vefa Bicakci
with _FAIL, as expected by the calling code. This lets us remove two levels of indentation from the functions in question, making them more readable. Signed-off-by: M. Vefa Bicakci --- drivers/staging/rtl8723au/core/rtw_security.c | 178 +- 1 file changed, 88 insertions(+

[PATCH v2 16/16] staging: rtl8723au: Remove unneeded comments

2015-03-14 Thread M. Vefa Bicakci
This commit removes a number of unneeded comments. Two of the aforementioned comments were most likely meant to aid with version control, whereas the remaining two comments relate to (now unused) local variable names. Signed-off-by: M. Vefa Bicakci --- drivers/staging/rtl8723au/core

[PATCH v2 06/16] staging: rtl8723au: Do not initialize a static to 0

2015-03-14 Thread M. Vefa Bicakci
Prior to this commit, a static integer named bcrc32initialized in rtl8723au's rtw_security.c was explicitly initialized to zero, even though this is not necessary. Remove the unneeded initialization. Signed-off-by: M. Vefa Bicakci --- drivers/staging/rtl8723au/core/rtw_security.c | 2 +- 1

[PATCH v2 07/16] staging: rtl8723au: else is not generally useful after a return

2015-03-14 Thread M. Vefa Bicakci
d-off-by: M. Vefa Bicakci --- drivers/staging/rtl8723au/core/rtw_security.c | 42 ++- 1 file changed, 22 insertions(+), 20 deletions(-) diff --git a/drivers/staging/rtl8723au/core/rtw_security.c b/drivers/staging/rtl8723au/core/rtw_security.c index f7b1d45981..f7571

[PATCH v2 13/16] staging: rtl8723au: suspect code indent for conditional statements

2015-03-14 Thread M. Vefa Bicakci
Correct a number of indentation-with-spaces-and-tabs issues in rtl8723au's rtw_security.c, according to checkpatch.pl: WARNING: suspect code indent for conditional statements Signed-off-by: M. Vefa Bicakci --- drivers/staging/rtl8723au/core/rtw_security.c

[PATCH v2 14/16] staging: rtl8723au: Rework two byte array comparisons

2015-03-14 Thread M. Vefa Bicakci
s for suggesting the use of 32-bit integer comparisons instead of byte array comparisons. v2: Correct code style issues and compare 32-bit integers instead of byte arrays. Update the commit message to better reflect the nature of the changes. Signed-off-by: M. Vefa Bicakci --- drivers/staging/rtl8

[PATCH v2 09/16] staging: rtl8723au: trailing statements should be on next line

2015-03-14 Thread M. Vefa Bicakci
Correct a number of checkpatch.pl errors in rtl8723au's rtw_security.c related to trailing statements: ERROR: trailing statements should be on next line Signed-off-by: M. Vefa Bicakci --- drivers/staging/rtl8723au/core/rtw_security.c | 25 + 1 file change

[PATCH v2 10/16] staging: rtl8723au: that open brace should be on the previous line

2015-03-14 Thread M. Vefa Bicakci
Correct two instances of the checkpatch.pl error indicating that the opening curly braces should not be on new lines: ERROR: that open brace { should be on the previous line Signed-off-by: M. Vefa Bicakci --- drivers/staging/rtl8723au/core/rtw_security.c | 6 ++ 1 file changed, 2

[PATCH v2 12/16] staging: rtl8723au: Adjust whitespace in and around comments

2015-03-14 Thread M. Vefa Bicakci
As the subject indicates, adjust whitespace in and around comments in rtl8723au's rtw_security.c. Signed-off-by: M. Vefa Bicakci --- drivers/staging/rtl8723au/core/rtw_security.c | 114 +- 1 file changed, 57 insertions(+), 57 deletions(-) diff --git a/drivers/st

[PATCH v2 08/16] staging: rtl8723au: Remove unneeded curly braces

2015-03-14 Thread M. Vefa Bicakci
Correct a number of checkpatch.pl warnings in rtl8723au's rtw_security.c related to the existence of unnecessary curly braces around single statement blocks: WARNING: braces {} are not necessary for single statement blocks Signed-off-by: M. Vefa Bicakci --- drivers/staging/rtl8

Re: [PATCH 14/16] staging: rtl8723au: Improve readability of two very long lines

2015-03-14 Thread M. Vefa Bicakci
On 14/03/15 05:55 PM, Joe Perches wrote: > On Sat, 2015-03-14 at 16:16 -0400, M. Vefa Bicakci wrote: >> On 13/03/15 12:24 PM, Joe Perches wrote: >>> On Fri, 2015-03-13 at 10:44 -0500, Larry Finger wrote: >>>> On 03/12/2015 10:15 PM, M. Vefa Bicakci wrote: >>

[PATCH v2 11/16] staging: rtl8723au: No spaces at the start of a line

2015-03-14 Thread M. Vefa Bicakci
line Signed-off-by: M. Vefa Bicakci --- drivers/staging/rtl8723au/core/rtw_security.c | 140 +- 1 file changed, 70 insertions(+), 70 deletions(-) diff --git a/drivers/staging/rtl8723au/core/rtw_security.c b/drivers/staging/rtl8723au/core/rtw_security.c index 2d762

[PATCH v2 15/16] staging: rtl8723au: Correct a typo in a trace log line

2015-03-14 Thread M. Vefa Bicakci
Correct a typo in rtl8723au's rtw_security.c which was most likely caused by a copy and paste mistake. Prior to this commit, the TKIP decryption function referred to WEP in its trace log output. Signed-off-by: M. Vefa Bicakci --- drivers/staging/rtl8723au/core/rtw_security.c | 2 +- 1

[PATCH v2 00/16] checkpatch clean-up of rtl8723au's rtw_security.c

2015-03-14 Thread M. Vefa Bicakci
espace issues - Rework two byte array comparisons M. Vefa Bicakci (16): staging: rtl8723au: Reformat whitespace to increase readability staging: rtl8723au: Fix "before/around/after" whitespace issues staging: rtl8723au: else should follow close brace staging: rtl8723au: Fix the

[PATCH v2 04/16] staging: rtl8723au: Fix the indentation of two lines

2015-03-14 Thread M. Vefa Bicakci
Correct the indentation of two lines in rtw_tkip_encrypt23a function in rtl8723au's rtw_security.c. Signed-off-by: M. Vefa Bicakci --- drivers/staging/rtl8723au/core/rtw_security.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/drivers/staging/rtl8723au

[PATCH v2 01/16] staging: rtl8723au: Reformat whitespace to increase readability

2015-03-14 Thread M. Vefa Bicakci
Signed-off-by: M. Vefa Bicakci --- drivers/staging/rtl8723au/core/rtw_security.c | 79 +-- 1 file changed, 38 insertions(+), 41 deletions(-) diff --git a/drivers/staging/rtl8723au/core/rtw_security.c b/drivers/staging/rtl8723au/core/rtw_security.c index 0610d5f1bd..e68c884

[PATCH v2 02/16] staging: rtl8723au: Fix "before/around/after" whitespace issues

2015-03-14 Thread M. Vefa Bicakci
Correct a number of "space(s) required before/around/after" checkpatch.pl issues in a number of functions in rtl8723au's rtw_security.c. v2: Correct one more whitespace issue ("length-4") in rtw_tkip_decrypt23a. Signed-off-by: M. Vefa Bicakci --- drive

Re: [PATCH v2 00/16] checkpatch clean-up of rtl8723au's rtw_security.c

2015-03-15 Thread M. Vefa Bicakci
On Sun, March 15, 2015 10:31:42 Matthias Beyer wrote: > Hi, > > On 14-03-2015 20:10:25, M. Vefa Bicakci wrote: > > These commits address a number of checkpatch.pl warnings and errors > > in rtl8723au's rtw_security.c. > > Were these patches already applied? I

re: [4.0] cryptsetup fails

2015-03-04 Thread McCaffrey, Timothy M
r allocating crypto tfm"; >fd2d231fa (Mikulas Patocka2012-07-27 15:08:05 +0100 1623) > goto bad; >$ grep AES /boot/config-4.0.0-rc1-23421-g023a600 ># CONFIG_SND_MAESTRO3 is not set >CONFIG_CRYPTO_AES=y >CONFIG_CRYPTO_AES_X86_64=m >CONFIG_CRYPT

RE: re: [4.0] cryptsetup fails

2015-03-04 Thread McCaffrey, Timothy M
> -Original Message- > From: McCaffrey, Timothy M > Sent: Wednesday, March 04, 2015 2:14 PM > To: 'linux-kernel@vger.kernel.org' > Subject: re: [4.0] cryptsetup fails > > >Subject:[4.0] cryptsetup fails > >From: Thomas Meyer > >

RE: [PATCH RFC v3 0/7] epoll: Introduce new syscalls, epoll_ctl_batch and epoll_pwait1

2015-02-15 Thread Seymour, Shane M
I found the manual pages really confusing so I had a go at rewriting them - there were places in the manual page that didn't match the functionality provided by your code as well as I could tell). My apologies for a few formatting issues though. I still don't like parts of epoll_pwait1 but it's le

Re: [regression] linux318, linux41 - kernel stack is corrupted

2016-04-22 Thread Sebastian M. Bobrecki
isect' to find the offending patch? Greg have you seen screenshots linked by Philip? -- Sebastian M. Bobrecki

Re: [regression] linux318, linux41 - kernel stack is corrupted

2016-04-22 Thread Sebastian M. Bobrecki
W dniu 22.04.2016 o 09:55, Greg Kroah-Hartman pisze: On Fri, Apr 22, 2016 at 09:47:04AM +0200, Sebastian M. Bobrecki wrote: Hi, I just hit the same with 4.1.22 on Gentoo. 4.1.21 are working fine. On 22.04.2016 at 08:46, Greg Kroah-Hartman wrote: ... You are going to have to be a bit more

RE: [PATCH] block: create ioctl to discard-or-zeroout a range of blocks

2015-11-10 Thread Seymour, Shane M
A quick question about this part of the patch: > + uint64_t end = start + len - 1; > + if (end >= i_size_read(bdev->bd_inode)) return -EINVAL; > + /* Invalidate the page cache, including dirty pages */ > + mapping = bdev->bd_inode->i_mapping; > + truncate_ino

RE: [PATCH v4] block: create ioctl to discard-or-zeroout a range of blocks

2015-11-16 Thread Seymour, Shane M
> v4: Check the start/len arguments for overflows prior to feeding the page > cache bogus numbers (that it'll ignore anyway). > Signed-off-by: Darrick J. Wong Reviewed-by: Shane Seymour -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to m

[PATCH] net: bcmgenet: use ethtool_op_get_ts_info()

2019-08-30 Thread Ryan M. Collins
l_ops bcmgenet_ethtool_ops() as get_ts_info(), the SOF_TIMESTAMPING_TX_SOFTWARE capability is announced. Similar to commit a8f5cb9e7991 ("smsc95xx: use ethtool_op_get_ts_info()") Signed-off-by: Ryan M. Collins --- drivers/net/ethernet/broadcom/genet/bcmgenet.c | 1 + 1 file changed, 1 insertion(+

[PATCH] platform/x86: intel_pmc_core: Do not ioremap RAM

2019-08-15 Thread M. Vefa Bicakci
not verified by the driver, which is what this patch introduces. With this patch, if address PMC_BASE_ADDR_DEFAULT is in RAM, then the driver will not attempt to ioremap the aforementioned address. Signed-off-by: M. Vefa Bicakci --- drivers/platform/x86/intel_pmc_core.c | 8 ++-- 1 file changed,

[PATCH] platform/x86: intel_pmc_core_pltdrv: Module removal warning fix

2019-08-15 Thread M. Vefa Bicakci
or the driver. Signed-off-by: M. Vefa Bicakci --- drivers/platform/x86/intel_pmc_core_pltdrv.c | 8 1 file changed, 8 insertions(+) diff --git a/drivers/platform/x86/intel_pmc_core_pltdrv.c b/drivers/platform/x86/intel_pmc_core_pltdrv.c index a8754a6db1b8..186540014c48 100644 ---

Re: [PATCH] platform/x86: intel_pmc_core: Do not ioremap RAM

2019-08-16 Thread M. Vefa Bicakci
On Fri, 16 Aug 2019 12:21:58 +0300 Andy Shevchenko wrote: > On Fri, Aug 16, 2019 at 4:42 AM M. Vefa Bicakci wrote: > > > > On a Xen-based PVH virtual machine with more than 4 GiB of RAM, > > intel_pmc_core fails initialization with the following warning message > >

Re: [Breakage] Git v2.21.0-rc0 - t5318 (NonStop)

2019-02-08 Thread brian m. carlson
dn't think the > command-line tool was. If it really is available everywhere, then yeah, > I'd be fine with it. It's not. POSIX doesn't specify the command, and macOS lacks it, I believe. -- brian m. carlson: Houston, Texas, US OpenPGP: https://keybase.io/bk2204 signature.asc Description: PGP signature

Re: [Breakage] Git v2.21.0-rc0 - t5318 (NonStop)

2019-02-08 Thread brian m. carlson
't matter to me one way or another, as > long as I can get the dependency to /dev/zero removed so tests will run here. My preference is that we wrap the yes/tr invocation into a function (maybe "infinite_nul") and use that where we currently require /dev/zero. -- brian m. c

Geld überwiesen

2019-08-11 Thread Mr.WEHNER DAVID M
, gezogen. Ich bin Mr. WEHNER DAVID M. Ein persönlicher Buchhalter des verstorbenen Mr. Michael Blair, der bei Shell British Petroleum gearbeitet hat. Herr Michael Blair, ein bekannter Philanthrop, hat vor seinem Tod in einer Anwaltskanzlei ein Testament abgegeben, das besagt, dass 12,5 Millionen US

Re: [PATCH] kconfig: fix missing choice values in auto.conf

2019-08-02 Thread M. Vefa Bicakci
contain only comments. I am appending a patch that resolves this issue. The patch is a bit ugly because of the code duplication, but it fixes this bug. (I have lightly tested the patch.) Even if the patch is not merged, I would appreciate it if this bug could be fixed. Thank you, Vefa === 8<

[PATCH v2] kconfig: Clear "written" flag to avoid data loss

2019-08-03 Thread M. Vefa Bicakci
: 8e2442a5f86e ("kconfig: fix missing choice values in auto.conf") Cc: linux-stable # 4.19+ Signed-off-by: M. Vefa Bicakci --- Changes since v1: * As suggested by Masahiro Yamada, instead of defining a new helper function to traverse over all symbols in a pre-defined order, use the for_a

,

2019-06-25 Thread Mr. M. Tangza
-- Dear Friend. My name is:Maki Tangza, a banker in one of the banks in my country Burkina Faso in African.I Hoped that you will not expose or betray this trust and confident that I am about to repose on you for the mutual benefit of our both families.I need your urgent assistance in transferring

RE: RE: FPO16803

2019-06-11 Thread 'Sujit Kumar M.'
Dear Sir, Please find attached our official Purchase order (SI/FPO/16803 Dated. 11/06/2019) and arrange to supply the requirements in accordance with Mustafa Sultan Science & Industry Co.'s procurements terms & conditions of purchase as per the attachment. Kindly acknowledge the receipt of t

Re: [PATCH 2/4] Expose O_PATHSTATIC to userspace

2019-02-12 Thread Demi M. Obenour
On 2/12/19 3:18 PM, Andreas Dilger wrote: > On Feb 12, 2019, at 7:54 AM, demioben...@gmail.com wrote: >> >> From: "Demi M. Obenour" >> >> This adds the file open flag O_PATHSTATIC, which ensures that symbolic >> links are *never* followed, even in path

Re: [PATCH 4/4] Return -EINVAL if userspace passes bogus flags to open()

2019-02-12 Thread Demi M. Obenour
On 2/12/19 3:38 PM, Al Viro wrote: > On Tue, Feb 12, 2019 at 09:54:47AM -0500, demioben...@gmail.com wrote: >> From: "Demi M. Obenour" >> >> While testing the O_PATHSTATIC patch, I discovered that Linux does not >> return any error if an invalid flag

Re: [PATCH] ARM: dts: rockchip: add chosen node on veyron chromebooks

2019-02-15 Thread Alexandru M Stan
On Fri, Feb 15, 2019 at 3:09 PM Heiko Stübner wrote: > > Hi Enric, > > Am Freitag, 15. Februar 2019, 12:51:50 CET schrieb Enric Balletbo i Serra: > > In order to use earlycon, the stdout-path property needs to be set > > in the chosen node. > > > > Signed-off-by: Enric Balletbo i Serra > > What's

Charity Donation!!!

2018-09-08 Thread Mikhail M. Fridman
I, Mikhail Fridman have selected you specifically as one of my beneficiaries for my Charitable Donation, Check the link below for confirmation: https://www.rt.com/business/343781-mikhail-fridman-will-charity/ I await your earliest response. Best Regards, Mikhail Fridman. ---

[PATCH] mtd: mtdoops: optionally dump boottime

2018-05-19 Thread Stefan M Schaeckeler
ill be otherwise lost after (multiple) reboots. Signed-off-by: Stefan M Schaeckeler --- drivers/mtd/mtdoops.c | 38 +++--- 1 file changed, 35 insertions(+), 3 deletions(-) diff --git a/drivers/mtd/mtdoops.c b/drivers/mtd/mtdoops.c index 9f25111..11f93aa 100644

Re: [PATCH] mfd: cros ec: spi: Fix "in progress" error signaling

2018-03-29 Thread Alexandru M Stan
On Tue, Mar 27, 2018 at 3:49 AM, Enric Balletbo Serra wrote: > I think that accessing to the ec console should give the same result, right? Yep, even better. > > In such case here is: > > Veyron Minnie ( ASUS Chromebook Flip C100PA ) >

RE: IT Help-Desk Support

2018-03-30 Thread Cicerchi, David M
Employee/Staff Urgency. This is to Notify all Employee/Staff, there would be an Important Update SecureTide® BARACUDA 2018 Anti-Spam filter for all Outlook Webmail users. this is to Secure our Inboxes from Spam & Malware Worldwide. to activate, Kindly click on Encrypt Email

[no subject]

2018-04-20 Thread Fridman M. Maratovich
I Mikhail Fridman. has selected you specially as one of my beneficiaries for my Charitable Donation, Just as I have declared on May 23, 2016 to give my fortune as charity. Check the link below for confirmation: http://www.ibtimes.co.uk/russias-second-wealthiest-man-mikhail-fridman-plans-leaving

[PATCH 0/2] Add backlight-pwm-passthru in analogix DP driver

2018-03-15 Thread Alexandru M Stan
This series includes the optional dt binding to enable this fix (backlight-pwm-passthru) and the corresponding code in the analogix drm/bridge driver. Alexandru M Stan (2): dt-bindings: analogix-dp: Add backlight-pwm-passthru drm/bridge: analogix: Enable EDP_BACKLIGHT_FREQ_PWM_PIN_PASSTHRU

[PATCH 2/2] drm/bridge: analogix: Enable EDP_BACKLIGHT_FREQ_PWM_PIN_PASSTHRU

2018-03-15 Thread Alexandru M Stan
Configure the DPCD registers for the backlight to respect the pwm frequency of the input. We sometimes don't want it to generate its own. Signed-off-by: Alexandru M Stan --- drivers/gpu/drm/bridge/analogix/analogix_dp_core.c | 48 ++ drivers/gpu/drm/bridge/ana

[PATCH 1/2] dt-bindings: analogix-dp: Add backlight-pwm-passthru

2018-03-15 Thread Alexandru M Stan
Documentation for the optional backlight-pwm-passthru property. Tells the EDP panel to folow the input pwm frequency instead of generating its own. Signed-off-by: Alexandru M Stan --- Documentation/devicetree/bindings/display/bridge/analogix_dp.txt | 4 1 file changed, 4 insertions

Ahoj....

2016-10-20 Thread Ko M. Leung
Ahoj. Dobry vecer a jak se mas? Jen rychly jedno, je tu oficialni prilezitosti bych chtel diskutovat s vami soukrome. Ocenil bych vasi rychlou reakci tady na mem osobnim soukromeho e-mailu nize pro dalsi komunikaci. S pratelskym pozdravem, Paní Ko May Leung email: kmyln...@gmail.com M

Re: [PATCH] x86/cpuid: Deal with broken firmware once more

2016-11-09 Thread M. Vefa Bicakci
s differ use the package information from the ACPI/MP tables so > the existing logical package map just works. > > Reported-by: "Charles (Chas) Williams" , > Reported-by: M. Vefa Bicakci > Signed-off-by: Thomas Gleixner Hello Thomas and Sebastian, Sorry for the delay

[PATCH] staging: rtl8192e: Fix checkpatch warnings

2016-11-10 Thread Y M Patil
This patch fixes block comment coding style warnings. And added new line after variable declaration. Signed-off-by: Y M Patil --- drivers/staging/rtl8192e/dot11d.c | 2 +- drivers/staging/rtl8192e/rtl819x_BAProc.c | 3 ++- drivers/staging/rtl8192e/rtl819x_HTProc.c | 2 +- drivers

Re: [PATCH] x86/cpuid: Deal with broken firmware once more

2016-11-12 Thread M. Vefa Bicakci
On 11/10/2016 01:50 PM, Charles (Chas) Williams wrote: > > > On 11/09/2016 10:57 PM, M. Vefa Bicakci wrote: >> [0.002000] mvb: CPU: Physical Processor ID: 0 >> [0.002000] mvb: CPU: Processor Core ID: 0 >> [0.002000] mvb: identify_cpu:1112: c: 880013b0

Re: [PATCH] x86/cpuid: Deal with broken firmware once more

2016-11-12 Thread M. Vefa Bicakci
On 11/10/2016 06:31 PM, Boris Ostrovsky wrote: > On 11/10/2016 10:05 AM, Charles (Chas) Williams wrote: >> >> >> On 11/10/2016 09:02 AM, Boris Ostrovsky wrote: >>> On 11/10/2016 06:13 AM, Thomas Gleixner wrote: >>>> On Thu, 10 Nov 2016, M. Vefa Bicakc

Re: [PATCH] x86/cpuid: Deal with broken firmware once more

2016-11-13 Thread M. Vefa Bicakci
On 11/13/2016 09:04 PM, Boris Ostrovsky wrote: > On 11/12/2016 05:05 PM, M. Vefa Bicakci wrote: >> On 11/10/2016 06:31 PM, Boris Ostrovsky wrote: >>> On 11/10/2016 10:05 AM, Charles (Chas) Williams wrote: >>>> >>>> On 11/10/2016 09:02 AM, Boris Ostrovsky w

Re: [PREEMPT-RT] Oops in rapl_cpu_prepare()

2016-11-01 Thread M. Vefa Bicakci
> On 2016-10-27 15:00:32 [-0400], Charles (Chas) Williams wrote: >> >> [snip] >> >> But sometimes the topology info is correct and if I get lucky, the >> package id could be valid for all the CPU's. Given the behavior, >> I have seen so far it makes me thing the RAPL isn't being emulated. >> So ev

Re: [PREEMPT-RT] Oops in rapl_cpu_prepare()

2016-11-03 Thread M. Vefa Bicakci
On 11/02/2016 08:23 PM, Sebastian Andrzej Siewior wrote: > On 2016-11-01 13:15:53 [+0300], M. Vefa Bicakci wrote: >> Hello Sebastian, > > Hi, > >> The patch fixes the kernel oops for me. >> >> I am using a custom 4.8.5-based kernel on Qubes OS R3.2, which is ba

Ahoj....

2016-11-04 Thread K. M Leung
Ahoj. Dobry vecer a jak se mas? Jen rychly jedno, je tu oficialni prilezitosti bych chtel diskutovat s vami soukrome. Ocenil bych vasi rychlou reakci tady na mem osobnim soukromeho e-mailu nize pro dalsi komunikaci. S pratelskym pozdravem, Paní Ko May Leung email: kleung...@gmail.com

[no subject]

2016-06-30 Thread Brown, Jaime M
did you get my mail..?

Re: userns, netns, and quick physical memory consumption by unprivileged user

2016-03-11 Thread Yuriy M. Kaminskiy
nged nothing with underlying problem). > > So, how about something like this: > > $ cat << EOF >> eatphysmem > #!/bin/bash -xe > fd=6 > d="`mktemp -d /tmp/eatmemX`" > cd "$d" > rule="iptables -A INPUT -m conntrack --ctstate EST

[PATCH] Staging: rtl8188eu/core: fixed code indentation warning as reported by checkpatch.pl

2015-08-03 Thread Bareja, Mayank (M.)
from: Mayank Bareja fixed code indentation warning as detected with checkpatch.pl. Replaced spaces with tabs. Signed-off-by: Mayank Bareja --- drivers/staging/rtl8188eu/core/rtw_debug.c|4 +-- drivers/staging/rtl8188eu/core/rtw_efuse.c|2 +- drivers/staging/rtl8188eu/core/rtw_m

[PATCH 0/1] usb: dwc2: Fix NULL qh in dwc2_queue_transaction

2015-09-22 Thread Alexandru M Stan
consistent with other checks in there). I also hope this opens up discussions on this issue. Alexandru M Stan (1): usb: dwc2: Fix NULL qh in dwc2_queue_transaction drivers/usb/dwc2/hcd.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) -- 2.6.0.rc0.131.gf624c3d -- To unsubscrib

[PATCH] usb: dwc2: Fix NULL qh in dwc2_queue_transaction

2015-09-22 Thread Alexandru M Stan
When a usb device disconnects in a certain way, dwc2_queue_transaction still gets called after dwc2_hcd_cleanup_channels. dwc2_hcd_cleanup_channels does "channel->qh = NULL;" but dwc2_queue_transaction still wants to dereference qh. This adds a check for a null qh. Signed-off-by

RE: [PATCH] ipr: fix out-of-bounds null overwrite

2016-01-05 Thread Seymour, Shane M
> len = snprintf(fname, 99, "%s", buf); > - fname[len-1] = '\0'; Since it appears that's the only time len is actually used in that function can you please remove the variable len completely as part of the patch? -- To unsubscribe from this list: send the line "unsubscribe linux-kernel"

[PATCH] dt-bindings: hwmon: Correct vendor for mcp980x

2020-07-03 Thread Daniel M. Weeks
Signed-off-by: Daniel M. Weeks --- Documentation/devicetree/bindings/hwmon/lm75.txt | 2 +- drivers/hwmon/lm75.c | 8 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/Documentation/devicetree/bindings/hwmon/lm75.txt b/Documentation/devicetree

RE: [PATCH v2] serial: samsung: Re-factors UART IRQ resource for various Samsung SoC

2020-07-04 Thread M Tamseel Shams
> On Sun, Jun 28, 2020 at 12:30:07PM +0530, Tamseel Shams wrote: > > In few older Samsung SoCs like s3c2410, s3c2412 and s3c2440, UART IP > > is having 2 interrupt lines. > > However, in other SoCs like s3c6400, s5pv210, exynos5433, and > > exynos4210 UART is having only 1 interrupt line. Due to th

RE: [PATCH v3] serial: samsung: Re-factors UART IRQ resource for various Samsung SoC

2020-07-13 Thread M Tamseel Shams
> > In few older Samsung SoCs like s3c2410, s3c2412 and s3c2440, UART IP > > is having 2 interrupt lines. > > However, in other SoCs like s3c6400, s5pv210, exynos5433, and > > exynos4210 UART is having only 1 interrupt line. Due to this, > > "platform_get_irq(platdev, 1)" > > call in the driver giv

Re: [PATCH 5.8 05/85] Revert "usbip: Implement a match function to fix usbip"

2020-10-06 Thread M. Vefa Bicakci
On 05/10/2020 18.26, Greg Kroah-Hartman wrote: From: M. Vefa Bicakci commit d6407613c1e2ef90213dee388aa16b6e1bd08cbc upstream. This commit reverts commit 7a2f2974f265 ("usbip: Implement a match function to fix usbip"). In summary, commit d5643d2249b2 ("USB: Fix dev

[PATCH net backport to 5.5 - 5.8.3 v2] net: openvswitch: introduce common code for flushing flows

2020-08-26 Thread xiangxia . m . yue
From: Tonghao Zhang [ Upstream commit 1f3a090b9033f69de380c03db3ea1a1015c850cf ] Backport this commit to 5.5 - 5.8.3. To avoid some issues, for example RCU usage warning and double free, we should flush the flows under ovs_lock. This patch refactors table_instance_destroy and introduces table_i

Re: [PATCH 5.8 05/85] Revert "usbip: Implement a match function to fix usbip"

2020-10-08 Thread M. Vefa Bicakci
On 07/10/2020 12.13, Greg Kroah-Hartman wrote: On Tue, Oct 06, 2020 at 04:26:27PM +0300, M. Vefa Bicakci wrote: On 05/10/2020 18.26, Greg Kroah-Hartman wrote: From: M. Vefa Bicakci commit d6407613c1e2ef90213dee388aa16b6e1bd08cbc upstream. This commit reverts commit 7a2f2974f265 ("

Re: [PATCH 5.8 05/85] Revert "usbip: Implement a match function to fix usbip"

2020-10-08 Thread M. Vefa Bicakci
On 08/10/2020 05.25, Greg Kroah-Hartman wrote: On Thu, Oct 08, 2020 at 04:56:56AM -0400, M. Vefa Bicakci wrote: On 07/10/2020 12.13, Greg Kroah-Hartman wrote: On Tue, Oct 06, 2020 at 04:26:27PM +0300, M. Vefa Bicakci wrote: On 05/10/2020 18.26, Greg Kroah-Hartman wrote: From: M. Vefa Bicakci

[PATCH v2 00/22] add Object Storage Media Pool (mpool)

2020-10-12 Thread Nabeel M Mohamed
iew comments from Randy and Hillf: * Updates ioctl-number.rst file with mpool driver's ioctl code * Fixes issues in the usage of printk_timed_ratelimit() - Fixes a readahead issue found by internal testing Nabeel M Mohamed (22): mpool: add utility routines and ioctl definitions mpool: add in-mem

[PATCH v2 12/22] mpool: add metadata container or mlog-pair framework

2020-10-12 Thread Nabeel M Mohamed
Becker Signed-off-by: Greg Becker Co-developed-by: Pierre Labat Signed-off-by: Pierre Labat Co-developed-by: John Groves Signed-off-by: John Groves Signed-off-by: Nabeel M Mohamed --- drivers/mpool/mdc.c | 486 drivers/mpool/mdc.h | 106 ++ 2

[PATCH v2 04/22] mpool: add pool drive component which handles mpool IO using the block layer API

2020-10-12 Thread Nabeel M Mohamed
f-by: Greg Becker Co-developed-by: Pierre Labat Signed-off-by: Pierre Labat Co-developed-by: John Groves Signed-off-by: John Groves Signed-off-by: Nabeel M Mohamed --- drivers/mpool/init.c | 31 +++- drivers/mpool/init.h | 12 ++ drivers/mpool/pd.c | 424

[PATCH v2 07/22] mpool: add superblock management routines

2020-10-12 Thread Nabeel M Mohamed
container 0 (MDC-0). MDC-0 is introduced in a future patch. Co-developed-by: Greg Becker Signed-off-by: Greg Becker Co-developed-by: Pierre Labat Signed-off-by: Pierre Labat Co-developed-by: John Groves Signed-off-by: John Groves Signed-off-by: Nabeel M Mohamed --- drivers/mpool/init.c | 8

[PATCH v2 01/22] mpool: add utility routines and ioctl definitions

2020-10-12 Thread Nabeel M Mohamed
*) - Mblock cache management (MPIOC_VMA_*) Co-developed-by: Greg Becker Signed-off-by: Greg Becker Co-developed-by: Pierre Labat Signed-off-by: Pierre Labat Co-developed-by: John Groves Signed-off-by: John Groves Signed-off-by: Nabeel M Mohamed --- drivers/mpool/assert.h | 25

[PATCH v2 09/22] mpool: add mblock lifecycle management and IO routines

2020-10-12 Thread Nabeel M Mohamed
-life for the mblock in its associated MDC-K when deleting it and read/write mblock data. Co-developed-by: Greg Becker Signed-off-by: Greg Becker Co-developed-by: Pierre Labat Signed-off-by: Pierre Labat Co-developed-by: John Groves Signed-off-by: John Groves Signed-off-by: Nabeel M Mohamed

[PATCH v2 05/22] mpool: add space map component which manages free space on mpool devices

2020-10-12 Thread Nabeel M Mohamed
d to satisfy an allocation request - usable or spare or usable then spare or spare then usable. Co-developed-by: Greg Becker Signed-off-by: Greg Becker Co-developed-by: Pierre Labat Signed-off-by: Pierre Labat Co-developed-by: John Groves Signed-off-by: John Groves Signed-off-by: N

[PATCH v2 02/22] mpool: add in-memory struct definitions

2020-10-12 Thread Nabeel M Mohamed
interface Co-developed-by: Greg Becker Signed-off-by: Greg Becker Co-developed-by: Pierre Labat Signed-off-by: Pierre Labat Co-developed-by: John Groves Signed-off-by: John Groves Signed-off-by: Nabeel M Mohamed --- drivers/mpool/mclass.h | 137 +++ drivers/mpool/mlog.h| 212

[PATCH v2 13/22] mpool: add utility routines for mpool lifecycle management

2020-10-12 Thread Nabeel M Mohamed
. The root MDC provides a location for mpool clients to store whatever metadata they need for start-up. Co-developed-by: Greg Becker Signed-off-by: Greg Becker Co-developed-by: Pierre Labat Signed-off-by: Pierre Labat Co-developed-by: John Groves Signed-off-by: John Groves Signed-off-by: Nabeel M

[PATCH v2 08/22] mpool: add pool metadata routines to manage object lifecycle and IO

2020-10-12 Thread Nabeel M Mohamed
layer. Co-developed-by: Greg Becker Signed-off-by: Greg Becker Co-developed-by: Pierre Labat Signed-off-by: Pierre Labat Co-developed-by: John Groves Signed-off-by: John Groves Signed-off-by: Nabeel M Mohamed --- drivers/mpool/init.c|8 + drivers/mpool/omf.c |2 - drivers/

[PATCH v2 15/22] mpool: add mpool lifecycle management routines

2020-10-12 Thread Nabeel M Mohamed
Signed-off-by: John Groves Signed-off-by: Nabeel M Mohamed --- drivers/mpool/mp.c | 1086 1 file changed, 1086 insertions(+) create mode 100644 drivers/mpool/mp.c diff --git a/drivers/mpool/mp.c b/drivers/mpool/mp.c new file mode 100644 index

[PATCH v2 11/22] mpool: add mlog lifecycle management and IO routines

2020-10-12 Thread Nabeel M Mohamed
-developed-by: Pierre Labat Signed-off-by: Pierre Labat Co-developed-by: John Groves Signed-off-by: John Groves Signed-off-by: Nabeel M Mohamed --- drivers/mpool/mlog.c | 1667 ++ 1 file changed, 1667 insertions(+) create mode 100644 drivers/mpool/mlog.c

[PATCH v2 16/22] mpool: add mpool control plane utility routines

2020-10-12 Thread Nabeel M Mohamed
-by: Greg Becker Signed-off-by: Greg Becker Co-developed-by: Pierre Labat Signed-off-by: Pierre Labat Co-developed-by: John Groves Signed-off-by: John Groves Signed-off-by: Nabeel M Mohamed --- drivers/mpool/init.c | 20 ++ drivers/mpool/init.h | 3 + drivers/mpool/mpctl.c |

[PATCH v2 21/22] mpool: add documentation

2020-10-12 Thread Nabeel M Mohamed
igned-off-by: Nabeel M Mohamed --- .../userspace-api/ioctl/ioctl-number.rst | 3 +- drivers/mpool/mpool-locking.rst | 90 +++ 2 files changed, 92 insertions(+), 1 deletion(-) create mode 100644 drivers/mpool/mpool-locking.rst diff --git a/Documentation/userspac

[PATCH v2 17/22] mpool: add mpool lifecycle management ioctls

2020-10-12 Thread Nabeel M Mohamed
loped-by: John Groves Signed-off-by: John Groves Signed-off-by: Nabeel M Mohamed --- drivers/mpool/mpctl.c | 1560 + 1 file changed, 1560 insertions(+) diff --git a/drivers/mpool/mpctl.c b/drivers/mpool/mpctl.c index 21eb7ac4610b..de62f9a5524d 100644

[PATCH v2 03/22] mpool: add on-media struct definitions

2020-10-12 Thread Nabeel M Mohamed
-by: Greg Becker Signed-off-by: Greg Becker Co-developed-by: Pierre Labat Signed-off-by: Pierre Labat Co-developed-by: John Groves Signed-off-by: John Groves Signed-off-by: Nabeel M Mohamed --- drivers/mpool/omf.h | 593 drivers/mpool/omf_if.h

[PATCH v2 14/22] mpool: add pool metadata routines to create persistent mpools

2020-10-12 Thread Nabeel M Mohamed
-developed-by: Pierre Labat Signed-off-by: Pierre Labat Co-developed-by: John Groves Signed-off-by: John Groves Signed-off-by: Nabeel M Mohamed --- drivers/mpool/pmd.c | 2046 +++ drivers/mpool/pmd_obj.c |8 - 2 files changed, 2046 insertions(+), 8

[PATCH v2 06/22] mpool: add on-media pack, unpack and upgrade routines

2020-10-12 Thread Nabeel M Mohamed
s the in-memory format to the current on-media format. Co-developed-by: Greg Becker Signed-off-by: Greg Becker Co-developed-by: Pierre Labat Signed-off-by: Pierre Labat Co-developed-by: John Groves Signed-off-by: John Groves Signed-off-by: Nabeel M Mohamed --- drivers/mpool/init.c

[PATCH v2 18/22] mpool: add object lifecycle management ioctls

2020-10-12 Thread Nabeel M Mohamed
: Greg Becker Co-developed-by: Pierre Labat Signed-off-by: Pierre Labat Co-developed-by: John Groves Signed-off-by: John Groves Signed-off-by: Nabeel M Mohamed --- drivers/mpool/mpctl.c | 670 +- 1 file changed, 667 insertions(+), 3 deletions(-) diff

[PATCH v2 19/22] mpool: add support to mmap arbitrary collection of mblocks

2020-10-12 Thread Nabeel M Mohamed
f-by: Pierre Labat Co-developed-by: John Groves Signed-off-by: John Groves Signed-off-by: Nabeel M Mohamed --- drivers/mpool/init.c | 16 + drivers/mpool/init.h |2 + drivers/mpool/mcache.c | 1029 drivers/mpool/mcache.h | 96 drivers/mpo

[PATCH v2 22/22] mpool: add Kconfig and Makefile

2020-10-12 Thread Nabeel M Mohamed
This adds the Kconfig and Makefile for mpool. Co-developed-by: Greg Becker Signed-off-by: Greg Becker Co-developed-by: Pierre Labat Signed-off-by: Pierre Labat Co-developed-by: John Groves Signed-off-by: John Groves Signed-off-by: Nabeel M Mohamed --- drivers/Kconfig| 2

[PATCH v2 20/22] mpool: add support to proactively evict cached mblock data from the page-cache

2020-10-12 Thread Nabeel M Mohamed
Signed-off-by: Greg Becker Co-developed-by: Pierre Labat Signed-off-by: Pierre Labat Co-developed-by: John Groves Signed-off-by: John Groves Signed-off-by: Nabeel M Mohamed --- drivers/mpool/mcache.c | 43 +++ drivers/mpool/mcache.h | 8 + drivers/mpool/mpctl.c | 15 + drivers/mpool

[PATCH v2 10/22] mpool: add mlog IO utility routines

2020-10-12 Thread Nabeel M Mohamed
ierre Labat Co-developed-by: John Groves Signed-off-by: John Groves Signed-off-by: Nabeel M Mohamed --- drivers/mpool/mlog_utils.c | 1352 drivers/mpool/mlog_utils.h | 63 ++ 2 files changed, 1415 insertions(+) create mode 100644 drivers/mpool/mlog_utils.c c

Re: [PATCH v2 25/25] powerpc/signal32: Transform save_user_regs() and save_tm_user_regs() in 'unsafe' version

2020-09-28 Thread Christopher M. Riedl
On Tue Aug 18, 2020 at 12:19 PM CDT, Christophe Leroy wrote: > Change those two functions to be used within a user access block. > > For that, change save_general_regs() to and unsafe_save_general_regs(), > then replace all user accesses by unsafe_ versions. > > This series leads to a reduction fro

<    5   6   7   8   9   10   11   12   13   >