RE: [PATCH 1/1] mm: Export a function to read vm_committed_as

2012-11-12 Thread KY Srinivasan
> -Original Message- > From: David Rientjes [mailto:rient...@google.com] > Sent: Monday, November 12, 2012 6:49 PM > To: Dan Magenheimer > Cc: KY Srinivasan; Konrad Wilk; gre...@linuxfoundation.org; linux- > ker...@vger.kernel.org; devel@linuxdriverproject.org; o...@aepfle.de; > a...@cano

RE: [PATCH 1/1] mm: Export a function to read vm_committed_as

2012-11-12 Thread KY Srinivasan
> -Original Message- > From: Dan Magenheimer [mailto:dan.magenhei...@oracle.com] > Sent: Monday, November 12, 2012 6:32 PM > To: KY Srinivasan; David Rientjes; Konrad Wilk > Cc: gre...@linuxfoundation.org; linux-ker...@vger.kernel.org; > devel@linuxdriverproject.org; o...@aepfle.de; a...@

Re: [PATCH] bcm_wimax.ko - Modified supported device list [Correction]

2012-11-12 Thread Kevin McKinney
On Mon, Nov 12, 2012 at 11:43 AM, Muhammad Minhazul Haque wrote: > That's okay. Thank you for this. Please verify that the patch I submitted is correct. I gave you credit for the patch. In the future, please format your patches in this way. > I tested the hardware on both arch. On both machine

[PATCH] Staging: bcm: Add two products and remove an existing product.

2012-11-12 Thread Kevin McKinney
This patch adds two new products and modifies the device id table to include them. In addition, product of 0xbccd - BCM_USB_PRODUCT_ID_SM250 is removed because Beceem, ZTE, Sprint use this id for block devices. Signed-off-by: Kevin McKinney Reported-by: Muhammad Minhazul Haque --- drivers/stag

Re: [PATCH v2 1/1] staging: fwserial: Add TTY-over-Firewire serial driver

2012-11-12 Thread Greg Kroah-Hartman
On Tue, Nov 13, 2012 at 12:33:38AM +0100, Stefan Richter wrote: > On Nov 02 Peter Hurley wrote: > > This patch provides the kernel driver for high-speed TTY > > communication over the IEEE 1394 bus. > > > > Signed-off-by: Peter Hurley > > Hi Greg, > > you asked for an Ack. Here it is: I am OK

RE: [PATCH 1/1] mm: Export a function to read vm_committed_as

2012-11-12 Thread David Rientjes
On Mon, 12 Nov 2012, Dan Magenheimer wrote: > > > Why? Is xen using it for a different inference? > > > > I think it is good to separate these patches. Dan (copied here) wrote the > > code for the > > Xen self balloon driver. If it is ok with him I can submit the patch for > > Xen as well. >

Re: [PATCH v2 1/1] staging: fwserial: Add TTY-over-Firewire serial driver

2012-11-12 Thread Stefan Richter
On Nov 02 Peter Hurley wrote: > This patch provides the kernel driver for high-speed TTY > communication over the IEEE 1394 bus. > > Signed-off-by: Peter Hurley Hi Greg, you asked for an Ack. Here it is: I am OK with this getting added to the staging tree. (Sorry for the delay, I was ill and

RE: [PATCH 1/1] mm: Export a function to read vm_committed_as

2012-11-12 Thread Dan Magenheimer
> From: KY Srinivasan [mailto:k...@microsoft.com] > Sent: Monday, November 12, 2012 3:58 PM > To: David Rientjes > Cc: gre...@linuxfoundation.org; linux-ker...@vger.kernel.org; > devel@linuxdriverproject.org; > o...@aepfle.de; a...@canonical.com; a...@firstfloor.org; > a...@linux-foundation.org;

RE: [PATCH 1/1] mm: Export a function to read vm_committed_as

2012-11-12 Thread KY Srinivasan
> -Original Message- > From: David Rientjes [mailto:rient...@google.com] > Sent: Monday, November 12, 2012 4:54 PM > To: KY Srinivasan > Cc: gre...@linuxfoundation.org; linux-ker...@vger.kernel.org; > devel@linuxdriverproject.org; o...@aepfle.de; a...@canonical.com; > a...@firstfloor.org;

RE: [PATCH 1/1] mm: Export a function to read vm_committed_as

2012-11-12 Thread David Rientjes
On Sun, 11 Nov 2012, KY Srinivasan wrote: > Thanks for the prompt response. For the Linux balloon driver for Hyper-V, I > need access > to the metric that reflects the system wide memory commitment made by the > guest kernel. > In the Hyper-V case, this information is one of the many metrics us

RE: [PATCH 1/1] mm: Export a function to read vm_committed_as

2012-11-12 Thread KY Srinivasan
> -Original Message- > From: KY Srinivasan > Sent: Sunday, November 11, 2012 4:24 AM > To: 'David Rientjes' > Cc: gre...@linuxfoundation.org; linux-ker...@vger.kernel.org; > devel@linuxdriverproject.org; o...@aepfle.de; a...@canonical.com; > a...@firstfloor.org; a...@linux-foundation.org;

[PATCH 2/2] staging: et131x: Remove unnecessary DMA address alignment code

2012-11-12 Thread Mark Einon
>From Documentation/DMA-API-HOWTO.txt on dma_alloc_coherent(): "The cpu return address and the DMA bus master address are both guaranteed to be aligned to the smallest PAGE_SIZE order which is greater than or equal to the requested size." There are several places in the et131x.c code where these

[PATCH 1/2] staging: et131x: Avoid unnecessary calculations in for loop

2012-11-12 Thread Mark Einon
In et131x_rx_dma_memory_alloc(), we loop over fbr_entries - the values of fbr_align and fbr_chunksize calculated in the loop do not depend on the loop counter and are the same for all loop iterations. Take the calculations of these values out of the loop, as we only need to calculate them once per

[PATCH 3/3] tools/hv: Fix permissions of created directory and files

2012-11-12 Thread Tomas Hozza
From: Ben Hutchings It's silly to create directories without execute permission, or to give permissions to 'other' but not the group-owner. Write the permissions in octal and 'ls -l' format since these are much easier to read than the named macros. Signed-off-by: Ben Hutchings Signed-off-by: T

[PATCH 1/3] tools/hv: Fix /var subdirectory

2012-11-12 Thread Tomas Hozza
Initial patch by Ben Hutchings We will install this in /usr, so it must use /var/lib for its state. Only programs installed under /opt should use /var/opt. Signed-off-by: Tomas Hozza --- tools/hv/hv_kvp_daemon.c | 12 ++-- 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/t