2.4.2 seems to break loopback and/or mount

2001-02-22 Thread jeff
more accurate response. Thank you, Jeff Wiegley - To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to [EMAIL PROTECTED] More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/

the editing is that you need

2018-08-11 Thread Jeff
a photo we will start to work on it, Thanks, Jeff Allen

the photos is what you need

2018-08-11 Thread Jeff
a photo we will start to work on it, Thanks, Jeff Allen

Re: Recent kernel "mount" slow

2012-11-26 Thread Jeff Chua
On Sun, Nov 25, 2012 at 7:23 AM, Jeff Chua wrote: > On Sun, Nov 25, 2012 at 5:09 AM, Mikulas Patocka wrote: >> So it's better to slow down mount. > > I am quite proud of the linux boot time pitting against other OS. Even > with 10 partitions. Linux can boot up in just

Re: Recent kernel "mount" slow

2012-11-27 Thread Jeff Chua
Jens, Limited access now at Incheon Airport. Will try the patch out when I arrived. Thanks, Jeff On 11/27/12, Jens Axboe wrote: > On 2012-11-27 08:38, Jens Axboe wrote: >> On 2012-11-27 06:57, Jeff Chua wrote: >>> On Sun, Nov 25, 2012 at 7:23 AM, Jeff Chua >>> wrote

Re: Recent kernel "mount" slow

2012-11-27 Thread Jeff Chua
On Tue, Nov 27, 2012 at 3:38 PM, Jens Axboe wrote: > On 2012-11-27 06:57, Jeff Chua wrote: >> On Sun, Nov 25, 2012 at 7:23 AM, Jeff Chua wrote: >>> On Sun, Nov 25, 2012 at 5:09 AM, Mikulas Patocka >>> wrote: >>>> So it's better to slow down mount

[patch,v3,repost 03/10] scsi: make scsi_alloc_sdev numa-aware

2012-11-27 Thread Jeff Moyer
Use the numa node id set in the Scsi_Host to allocate the sdev structure on the device-local numa node. Reviewed-by: Bart Van Assche Signed-off-by: Jeff Moyer --- drivers/scsi/scsi_scan.c |4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff --git a/drivers/scsi/scsi_scan.c b

[patch,v3,repost 07/10] megaraid_sas: use scsi_host_alloc_node

2012-11-27 Thread Jeff Moyer
Signed-off-by: Jeff Moyer --- drivers/scsi/megaraid/megaraid_sas_base.c |5 +++-- 1 files changed, 3 insertions(+), 2 deletions(-) diff --git a/drivers/scsi/megaraid/megaraid_sas_base.c b/drivers/scsi/megaraid/megaraid_sas_base.c index d2c5366..707a6cd 100644 --- a/drivers/scsi/megaraid

[patch,v3,repost 06/10] ata: use scsi_host_alloc_node

2012-11-27 Thread Jeff Moyer
Acked-by: Jeff Garzik Signed-off-by: Jeff Moyer --- drivers/ata/libata-scsi.c |3 ++- 1 files changed, 2 insertions(+), 1 deletions(-) diff --git a/drivers/ata/libata-scsi.c b/drivers/ata/libata-scsi.c index e3bda07..9d5dd09 100644 --- a/drivers/ata/libata-scsi.c +++ b/drivers/ata/libata

[patch,v3,repost 10/10] cciss: use blk_init_queue_node

2012-11-27 Thread Jeff Moyer
Signed-off-by: Jeff Moyer --- drivers/block/cciss.c |3 ++- 1 files changed, 2 insertions(+), 1 deletions(-) diff --git a/drivers/block/cciss.c b/drivers/block/cciss.c index b0f553b..5fe5546 100644 --- a/drivers/block/cciss.c +++ b/drivers/block/cciss.c @@ -1930,7 +1930,8 @@ static void

[patch,v3,repost 01/10] scsi: add scsi_host_alloc_node

2012-11-27 Thread Jeff Moyer
Allow an LLD to specify on which numa node to allocate scsi data structures. Thanks to Bart Van Assche for the suggestion. Reviewed-by: Bart Van Assche Signed-off-by: Jeff Moyer --- drivers/scsi/hosts.c | 13 +++-- include/scsi/scsi_host.h | 28 2

[patch,v3,repost 09/10] lpfc: use scsi_host_alloc_node

2012-11-27 Thread Jeff Moyer
Acked-By: James Smart Signed-off-by: Jeff Moyer --- drivers/scsi/lpfc/lpfc_init.c | 10 ++ 1 files changed, 6 insertions(+), 4 deletions(-) diff --git a/drivers/scsi/lpfc/lpfc_init.c b/drivers/scsi/lpfc/lpfc_init.c index 7dc4218..65956d3 100644 --- a/drivers/scsi/lpfc/lpfc_init.c

[patch,v3,repost 08/10] mpt2sas: use scsi_host_alloc_node

2012-11-27 Thread Jeff Moyer
Signed-off-by: Jeff Moyer --- drivers/scsi/mpt2sas/mpt2sas_scsih.c |4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff --git a/drivers/scsi/mpt2sas/mpt2sas_scsih.c b/drivers/scsi/mpt2sas/mpt2sas_scsih.c index af4e6c4..a4d6b36 100644 --- a/drivers/scsi/mpt2sas/mpt2sas_scsih.c

[patch,v3,repost 02/10] scsi: make __scsi_alloc_queue numa-aware

2012-11-27 Thread Jeff Moyer
Pass the numa node id set in the Scsi_Host on to blk_init_queue_node in order to keep all allocations local to the numa node the device is closest to. Reviewed-by: Bart Van Assche Signed-off-by: Jeff Moyer --- drivers/scsi/scsi_lib.c |3 ++- 1 files changed, 2 insertions(+), 1 deletions

[patch,v3,repost 05/10] sd: use alloc_disk_node

2012-11-27 Thread Jeff Moyer
Reviewed-by: Bart Van Assche Signed-off-by: Jeff Moyer --- drivers/scsi/sd.c |2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/drivers/scsi/sd.c b/drivers/scsi/sd.c index 12f6fdf..a5dae6b 100644 --- a/drivers/scsi/sd.c +++ b/drivers/scsi/sd.c @@ -2714,7 +2714,7 @@ static

[patch,v3,repost 00/10] make I/O path allocations more numa-friendly

2012-11-27 Thread Jeff Moyer
if others could show a more significant performance advantage. This is a repost of the last posting. The only changes are additional reviewed-by/acked-by tags. I think this version is ready for inclusion. James, would you mind taking a look? Cheers, Jeff [1] LSI Megaraid SAS controller with 1

[patch,v3,repost 04/10] scsi: allocate scsi_cmnd-s from the device's local numa node

2012-11-27 Thread Jeff Moyer
Reviewed-by: Bart Van Assche Signed-off-by: Jeff Moyer --- drivers/scsi/scsi.c | 16 ++-- 1 files changed, 10 insertions(+), 6 deletions(-) diff --git a/drivers/scsi/scsi.c b/drivers/scsi/scsi.c index 2936b44..1750702 100644 --- a/drivers/scsi/scsi.c +++ b/drivers/scsi/scsi.c

Re: [PATCH 2/2 v5] loop: Limit the number of requests in the bio list

2012-11-27 Thread Jeff Moyer
ios in the loop bio list would exceed 'nr_congestion_on'. > We'll wake up the process as we process the bios form the list. Some > threshold hysteresis is in place to avoid high frequency oscillation. > > Signed-off-by: Lukas Czerner > Reported-by: Dave Chinner Acke

Re: Recent kernel "mount" slow

2012-11-28 Thread Jeff Chua
On Wed, Nov 28, 2012 at 4:33 PM, Jens Axboe wrote: > On 2012-11-28 04:57, Mikulas Patocka wrote: >> >> >> On Tue, 27 Nov 2012, Jens Axboe wrote: >> >>> On 2012-11-27 11:06, Jeff Chua wrote: >>>> On Tue, Nov 27, 2012 at 3:38 PM, Jens Axboe w

Re: [PATCH 1/2] percpu-rwsem: use synchronize_sched_expedited

2012-11-28 Thread Jeff Chua
On Wed, Nov 28, 2012 at 11:59 AM, Mikulas Patocka wrote: > > > On Tue, 27 Nov 2012, Jeff Chua wrote: > >> On Tue, Nov 27, 2012 at 3:38 PM, Jens Axboe wrote: >> > On 2012-11-27 06:57, Jeff Chua wrote: >> >> On Sun, Nov 25, 2012 at 7:23 AM, Jeff Chua >&g

Re: [PATCH 2/2] block_dev: don't take the write lock if block size doesn't change

2012-11-28 Thread Jeff Chua
ping->i_mmap_mutex); > > /* Don't change the size if it is same as current */ > if (bdev->bd_block_size != size) { This patch didn't really make any difference for ext2/3/4 but for reiserfs it does. With the synchronize_sched_expedited() patch applied, it didn't make any difference. Thanks, Jeff -- 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] vfs: remove DCACHE_NEED_LOOKUP

2012-11-28 Thread Jeff Layton
The code that relied on that flag was ripped out of btrfs quite some time ago, and never added back. Josef indicated that he was going to take a different approach to the problem in btrfs, and that we could just eliminate this flag. Cc: Josef Bacik Signed-off-by: Jeff Layton --- fs/btrfs

Re: [PATCH 02/16] ata: Convert dev_printk(KERN_ to dev_(

2012-11-28 Thread Jeff Garzik
On 10/28/2012 04:05 AM, Joe Perches wrote: dev_ calls take less code than dev_printk(KERN_ and reducing object size is good. Coalesce formats for easier grep. Signed-off-by: Joe Perches --- drivers/ata/pata_cmd64x.c |6 +++--- 1 files changed, 3 insertions(+), 3 deletions(-) applied

Re: [PATCH] ata_piix: reenable MS Virtual PC guests

2012-11-28 Thread Jeff Garzik
On 09/18/2012 11:48 AM, Olaf Hering wrote: An earlier commit cd006086fa5d91414d8ff9ff2b78fbb593878e3c ("ata_piix: defer disks to the Hyper-V drivers by default") broke MS Virtual PC guests. Hyper-V guests and Virtual PC guests have nearly identical DMI info. As a result the driver does currently

[patch] bdi: add a user-tunable cpu_list for the bdi flusher threads

2012-11-28 Thread Jeff Moyer
convinced to make it a mask of all cpus to avoid a change in behaviour). Comments, as always, are appreciated. Cheers, Jeff Signed-off-by: Jeff Moyer diff --git a/include/linux/backing-dev.h b/include/linux/backing-dev.h index 2a9a9ab..68263e0 100644 --- a/include/linux/backing-dev.h +++ b/include

Re: [PATCH] tmpfs: support SEEK_DATA and SEEK_HOLE (reprise)

2012-11-28 Thread Jeff Liu
rep holding on to a no-arbitrary-limits dogma, >> at the expense of its users, causing an absurd line-length issue, >> which use of SEEK_DATA happens to avoid in some cases. >> >> The cp of sparse files from Jeff and Dave was more convincing; >> but I still didn'

Re: [PATCH] tmpfs: support SEEK_DATA and SEEK_HOLE (reprise)

2012-11-28 Thread Jeff Liu
On 11/29/2012 02:53 PM, Jim Meyering wrote: > Jeff Liu wrote: > >> On 11/29/2012 12:15 PM, Jim Meyering wrote: >>> Hugh Dickins wrote: >>>> On Thu, 29 Nov 2012, Jaegeuk Hanse wrote: >>> ... >>>>> But this time in which scenario will use it

Re: [PATCH] Introduce a method to catch mmap_region (was: Recent kernel "mount" slow)

2012-11-29 Thread Jeff Chua
uncate > races way back. You are stepping into what used to be a really nasty > minefield. I'll look into that, but it's *definitely* not -rc8 fodder. Just let me know which relevant patch(es) you want me to test or break. Thanks, Jeff -- To unsubscribe from this list: send the line

Re: [RFQ PATCH] cifs: Change default security error message

2012-11-29 Thread Jeff Layton
" from ntlm to ntlmv2 in kernel release 3.3"); > } > ses->overrideSecFlg = volume_info->secFlg; > > > > /^JN - Jesper Nilsson I think this warning has lived long enough and needs to go away. Steve supposedly has a patch that finally makes t

Re: [RFQ PATCH] cifs: Change default security error message

2012-11-29 Thread Jeff Layton
On Thu, 29 Nov 2012 12:54:41 -0600 Steve French wrote: > On Thu, Nov 29, 2012 at 12:25 PM, Jeff Layton wrote: > > On Thu, 29 Nov 2012 18:30:53 +0100 > > Jesper Nilsson wrote: > > > >> Hi! > >> > >> Connecting with a default security mechanism

Re: [PATCH 2/2] fs/aio.c: use get_user_pages_non_movable() to pin ring pages when support memory hotremove

2013-02-04 Thread Jeff Moyer
gt;mmap_base, nr_pages, > 1, 0, info->ring_pages, NULL); > +#endif Can't you hide this in your 1/1 patch, by providing this function as just a static inline wrapper around get_user_pages when CONFIG_MEMORY_HOTREMOVE is not enabled? Cheers, Jeff

Re: [PATCH 2/4] SUNRPC: remove cache_detail->cache_upcall callback

2013-02-04 Thread Jeff Layton
c:377:35: warning: left-hand operand of comma expression has no effect [-Wunused-value] fs/nfs/dns_resolve.c:377:35: warning: value computed is not used [-Wunused-value] fs/nfs/dns_resolve.c:377:35: warning: value computed is not used [-Wunused-value] fs/nfs/dns_resolve.c:377:35: warning: value computed is not used [-Wunused-value] fs/nfs/dns_resolve.c:377:35: warning: value computed is not used [-Wunused-value] fs/nfs/dns_resolve.c:377:35: warning: value computed is not used [-Wunused-value] fs/nfs/dns_resolve.c:377:35: warning: value computed is not used [-Wunused-value] fs/nfs/dns_resolve.c: At top level: fs/nfs/dns_resolve.c:129:13: warning: ‘nfs_dns_request’ defined but not used [-Wunused-function] make[1]: *** [fs/nfs/dns_resolve.o] Error 1 make: *** [_module_fs/nfs] Error 2 ...looks like you need to convert that cache_detail to use your new scheme as well? -- Jeff Layton -- 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/

Re: [RFC] setxattr bugs

2013-02-04 Thread Jeff Mahoney
ther of those cross into "established > weirdness in ABI" or are they still at the "bugs to be fixed" > stage? Since the behavior changed once already in 2009 I'd call it a bug. That code was in the SLES kernel for a while before then and I still haven't seen

Re: [RFC][PATCH] Entropy generator with 100 kB/s throughput

2013-02-09 Thread Jeff Epler
+) { t += dt; r = rol64(r ^ t, 3); } return r; } int main() { while(1) { uint64_t val = jitterrand(); ssize_t res = write(1, &val, sizeof(val)); if(res < 0) break; } return 0; } // Jeff -- To unsubscribe from this list: send the

Re: [RFC][PATCH] Entropy generator with 100 kB/s throughput

2013-02-10 Thread Jeff Epler
/* note: these helper functions are shamelessly stolen from the kernel :-) */ This give a generator that has Entropy = 7.07 bits per byte and fails 6 in 1 FIPS 140-2 tests. It also passes some (but not all) dieharder tests. Jeff -- To unsubscribe from this list: send the line "unsubscri

Re: [PATCH 23/32] Generic dynamic per cpu refcounting

2013-02-11 Thread Jeff Moyer
ected. Still don't know what's going on with that. I'll try to get some benchmarking numbers for this patch set. -Jeff -- 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/

Re: linux-next: build failure after merge of the final tree (nfsd tree related)

2013-04-03 Thread Jeff Layton
problem... Looks like Bruce's tree has an older version of that patch series. I think we just need to get him to drop that one and merge the new one. -- Jeff Layton signature.asc Description: PGP signature

Re: linux-next: build failure after merge of the final tree (nfsd tree related)

2013-04-03 Thread Jeff Layton
On Wed, 3 Apr 2013 07:33:01 -0400 "J. Bruce Fields" wrote: > On Wed, Apr 03, 2013 at 07:10:54AM -0400, Jeff Layton wrote: > > On Wed, 3 Apr 2013 17:42:19 +1100 > > Stephen Rothwell wrote: > > > > > Hi all, > > > > > > After mergi

Re: linux-next: build failure after merge of the final tree (nfsd tree related)

2013-04-03 Thread Jeff Layton
On Wed, 3 Apr 2013 14:05:19 -0400 "J. Bruce Fields" wrote: > On Wed, Apr 03, 2013 at 07:38:57AM -0400, Jeff Layton wrote: > > On Wed, 3 Apr 2013 07:33:01 -0400 > > "J. Bruce Fields" wrote: > > > > > On Wed, Apr 03, 2013 at 07:10:54AM -0400, J

Re: [PATCH v3] ata: Fix DVD not dectected at some Haswell platforms

2013-04-03 Thread Jeff Garzik
On 03/06/2013 10:49 AM, Youquan Song wrote: There is a quirk patch 5e5a4f5d5a08c9c504fe956391ac3dae2c66556d "ata_piix: make DVD Drive recognisable on systems with Intel Sandybridge chipsets(v2)" fixing the 4 ports IDE controller 32bit PIO mode. We've hit a problem with DVD not recognized on Ha

Re: ata: HDIO_DRIVE_* ioctl() Linux 3.9 regression

2013-04-03 Thread Jeff Garzik
On 03/27/2013 08:51 AM, Krzysztof Mazur wrote: On Mon, Mar 25, 2013 at 06:26:50PM +0100, Ronald wrote: In reply to [1]: I have the same issue. Git bisect took 50+ rebuilds xD Smartd does not work anymore since 84a9a8cd9 ([libata] Set proper SK when CK_COND is set.). I hope I'm not stepping on

Re: [PATCH] [libata] Fix HDIO_DRIVE_CMD ioctl sense data check

2013-04-03 Thread Jeff Garzik
On 03/29/2013 01:56 AM, Gwendal Grignou wrote: commit 84a9a8cd9d0aa93c17e5815ab8a9cc4c0a765c63 changed the sense key used for returning task registers, but HDIO_DRIVE_CMD ioctl was not changed accordingly. Tested: check that SMART ENABLE sent using HDIO_DRIVE_CMD returns 0 instead of EIO. Signe

Re: [PATCH] drivers: ata: Use resource_size function

2013-04-03 Thread Jeff Garzik
On 03/16/2013 10:32 AM, Alexandru Gheorghiu wrote: Use resource_size function instead of explicit computation. Patch found using coccinelle. Signed-off-by: Alexandru Gheorghiu --- drivers/ata/pata_octeon_cf.c |2 +- 1 file changed, 1 insertion(+), 1 deletion(-) applied -- To unsubsc

Re: [PATCH RFC 1/1] AHCI: Optimize interrupt processing

2013-04-03 Thread Jeff Garzik
On 03/06/2013 06:26 AM, Alexander Gordeev wrote: Split interrupt service routine into hardware context handler and threaded context handler. That allows to protect ports with individual locks rather than with a single host-wide lock, which results in better parallelism. Signed-off-by: Alexander

Re: [PATCH v0] Add SHA-3 hash algorithm

2013-04-03 Thread Jeff Garzik
On 10/03/2012 01:45 AM, Jeff Garzik wrote: Whee -- SHA-3 is out! I wanted to explore the new toy a bit, and so, here is a blatantly untested rough draft of SHA-3 kernel support. Why rough draft? Because answers to the questions below will inform a more polished version. Just to update

Re: [PATCH v3 6/7] NFSv4: Add O_DENY* open flags support

2013-04-04 Thread Jeff Layton
On Thu, 4 Apr 2013 14:30:12 +0400 Pavel Shilovsky wrote: > 2013/3/12 Jeff Layton : > > On Mon, 11 Mar 2013 14:54:34 -0400 > > Jeff Layton wrote: > > > >> On Thu, 28 Feb 2013 19:25:32 +0400 > >> Pavel Shilovsky wrote: > >> >

Re: [PATCH V6 00/30] loop: Issue O_DIRECT aio using bio_vec

2013-01-29 Thread Jeff Moyer
chset. If you use the ext4 driver for ext2 file systems, and you run the libaio test harness, then you will be able to successfully write beyond the maximum file size in a file (see test case 8). Cheers, Jeff -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in

[PATCH] ptp: PTP_1588_CLOCK_PCH depends on x86

2013-01-30 Thread Jeff Mahoney
The EG20T PCH is only compatible with Intel Atom processors so it should depend on x86. Cc: Richard Cochran Signed-off-by: Jeff Mahoney --- drivers/ptp/Kconfig |1 + 1 file changed, 1 insertion(+) --- a/drivers/ptp/Kconfig +++ b/drivers/ptp/Kconfig @@ -72,6 +72,7 @@ config DP83640_PHY

Re: [PATCH V6 00/30] loop: Issue O_DIRECT aio using bio_vec

2013-01-30 Thread Jeff Moyer
Dave Kleikamp writes: > On 01/29/2013 12:42 PM, Jeff Moyer wrote: >> Dave Kleikamp writes: >> >>> Al, >>> I'd like to push this patchset to linux-next. Would you like to pull it >>> into your vfs tree, would you rather I submitted it separatel

[RESEND] [PATCH] kernel/res_counter.c: remove useless return statement at res_counter_member()

2013-02-01 Thread Jeff Liu
The return statement after BUG() is invalid, move BUG() to the default choice of the switch. Signed-off-by: Jie Liu --- kernel/res_counter.c |5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/kernel/res_counter.c b/kernel/res_counter.c index ff55247..748a3bc 100644 ---

Re: next-20130117 - kernel BUG with aio

2013-01-24 Thread Jeff Moyer
not finding the time to finish my > review of the series. > > What specific tests has this gone through? The aio tests in xfstests / > ltp? (And as you discovered while chasing this bug, whatever platform > you were running on doesn't seem slow enough to catch some paths.. run >

Re: [PATCH] block: IBM RamSan 70/80 device driver.

2013-01-25 Thread Jeff Moyer
ueue->limits.discard_alignment = RSXX_HW_BLK_SIZE; > + card->queue->limits.discard_zeroes_data = 1; > + } Cheers, Jeff -- 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/

Re: [PATCH 2/3] ahci: AHCI-mode SATA patch for Intel Avoton DeviceIDs

2013-01-25 Thread Jeff Garzik
On 01/25/2013 03:01 PM, Seth Heasley wrote: This patch adds the AHCI and RAID-mode SATA DeviceIDs for the Intel Avoton SOC. Signed-off-by: Seth Heasley --- drivers/ata/ahci.c | 16 1 file changed, 16 insertions(+) applied 1-2 -- To unsubscribe from this list: send the l

[PATCH] checkpatch.pl: Fix warnings on code comments

2013-01-27 Thread Jeff Kirsher
style for networking my differ from the rest of the kernel, both styles should be permitted. This patch reverts a portion of the commit to allow multi-line code comments to use either style. Signed-off-by: Jeff Kirsher Tested-by: Jeff Pieper --- scripts/checkpatch.pl | 7 --- 1 file

Re: [PATCH] checkpatch.pl: Fix warnings on code comments

2013-01-27 Thread Jeff Kirsher
On Sun, 2013-01-27 at 18:59 -0500, David Miller wrote: > From: Jeff Kirsher > Date: Sun, 27 Jan 2013 03:35:39 -0800 > > > Produces warnings on code comments which follow the Linux coding style > > guide. While the desired code comment style for networking my differ >

Re: [PATCH] checkpatch.pl: Fix warnings on code comments

2013-01-28 Thread Jeff Kirsher
On Mon, 2013-01-28 at 09:30 -0800, Joe Perches wrote: > On Mon, 2013-01-28 at 17:17 +, Allan, Bruce W wrote: > > David Miller Sent: Sunday, January 27, 2013 7:07 PM > > > From: Jeff Kirsher > > > > So will you be fine with cleanup patches which go through and &g

Re: Reproduceable SATA lockup on 3.7.8 with SSD

2013-02-26 Thread Jeff Garzik
he drive's fault? Manually force speed to 3.0 Gbps, then 1.5 Gbps, and see what happens. Try module/kernel parameter libata.force=1.5Gbps or libata.force=3.0Gbps Jeff -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the bo

Re: [GIT PULL] ACPI and power management fixes for v3.9-rc1

2013-02-26 Thread Jeff Garzik
in the first page of google search. Definitely doesn't seem like a common term in US. There is just a lot more "odd" goings-on in the US. Korea is simply less odd than the US :) Will send a patch to fix... Jeff -- To unsubscribe from this list: send the lin

Re: [PATCH] CIFS: Decrease reconnection delay when switching nics

2013-02-27 Thread Jeff Layton
NK socket listening for RTM_DELADDR > messages? > > metze > Ick -- that sounds horrid ;) Dave, this problem sounds very similar to the one that your colleague Chris J Arges was trying to solve several months ago. You may want to go back and review that thread. Perhap

Re: [PATCH] CIFS: Decrease reconnection delay when switching nics

2013-02-28 Thread Jeff Layton
On Wed, 27 Feb 2013 16:24:07 -0600 Dave Chiluk wrote: > On 02/27/2013 10:34 AM, Jeff Layton wrote: > > On Wed, 27 Feb 2013 12:06:14 +0100 > > "Stefan (metze) Metzmacher" wrote: > > > >> Hi Dave, > >> > >>> When messages are curr

Re: [PATCH] CIFS: Decrease reconnection delay when switching nics

2013-02-28 Thread Jeff Layton
On Thu, 28 Feb 2013 10:04:36 -0600 Steve French wrote: > On Thu, Feb 28, 2013 at 9:26 AM, Jeff Layton wrote: > > On Wed, 27 Feb 2013 16:24:07 -0600 > > Dave Chiluk wrote: > > > >> On 02/27/2013 10:34 AM, Jeff Layton wrote: > >> > On Wed, 27 Feb

Re: [PATCH] CIFS: Decrease reconnection delay when switching nics

2013-02-28 Thread Jeff Layton
On Thu, 28 Feb 2013 11:31:54 -0600 Dave Chiluk wrote: > On 02/28/2013 10:47 AM, Jeff Layton wrote: > > On Thu, 28 Feb 2013 10:04:36 -0600 > > Steve French wrote: > > > >> On Thu, Feb 28, 2013 at 9:26 AM, Jeff Layton wrote: > >>> On Wed, 27 Feb 20

Re: [PATCH 2/2] ACPI / glue: Drop .find_bridge() callback from struct acpi_bus_type

2013-02-28 Thread Jeff Garzik
cpi.c |6 -- include/acpi/acpi_bus.h |3 --- 3 files changed, 1 insertion(+), 34 deletions(-) patches 1-2 Acked-by: Jeff Garzik -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majord...@vger.kernel.org More majordom

Re: [PATCH] CIFS: Decrease reconnection delay when switching nics

2013-02-28 Thread Jeff Layton
On Thu, 28 Feb 2013 23:54:13 +0100 Björn JACKE wrote: > On 2013-02-28 at 07:26 -0800 Jeff Layton sent off: > > NTFS doesn't support sparse files, so the OS has to zero-fill up to the > > point where you're writing. That can take a long time on slow > > stora

Re: [PATCH v3 6/7] NFSv4: Add O_DENY* open flags support

2013-03-12 Thread Jeff Layton
On Mon, 11 Mar 2013 14:54:34 -0400 Jeff Layton wrote: > On Thu, 28 Feb 2013 19:25:32 +0400 > Pavel Shilovsky wrote: > > > by passing these flags to NFSv4 open request. > > > > Signed-off-by: Pavel Shilovsky > > --- > > fs/nfs/nfs4xdr.c | 24 +

Re: [PATCH 1/4] UAPI: Fix endianness conditionals in linux/aio_abi.h

2013-03-12 Thread Jeff Moyer
xisting users use the libaio.h include (which does not > get the endianness tests wrong). Given that the kernel has always used the > correct endian mappings, this change is correct. Agreed. Acked-by: Jeff Moyer -- To unsubscribe from this list: send the line "unsubscribe linux-kern

Re: [PATCH] igb: SR-IOV init reordering

2013-03-13 Thread Jeff Kirsher
On Tue, 2013-03-12 at 15:25 -0600, Alex Williamson wrote: > igb is ineffective at setting a lower total VFs because: > > int pci_sriov_set_totalvfs(struct pci_dev *dev, u16 numvfs) > { > ... > /* Shouldn't change if VFs already enabled */ > if (dev->sriov->ctrl & PCI_SRIOV_

Re: [PATCH] igb: Fix null pointer dereference

2013-03-13 Thread Jeff Kirsher
On Tue, 2013-03-12 at 14:09 -0600, Alex Williamson wrote: > The max_vfs= option has always been self limiting to the number of VFs > supported by the device. fa44f2f1 added SR-IOV configuration via > sysfs, but in the process broke this self correction factor. The > failing path is: > > igb_prob

Re: [PATCH] cifs: Rename cERROR and cifserror to cifs_vfs_err

2013-03-13 Thread Jeff Layton
and cFYI() without needing to touch all of their call sites, it might be a simpler initial step. OTOH, I would also prefer to move the newline into the format and that's impossible without touching most of these call sites. -- Jeff Layton -- To unsubscribe from this list: send the line &q

Re: LOCKDEP: 3.9-rc1: mount.nfs/4272 still has locks held!

2013-03-13 Thread Jeff Layton
s and in the fedora bug tracker for this warning. Part of the problem is the verbiage -- "BUG" makes people think "Oops", but this is really just a warning. We should also note that this is a problem too in the CIFS code since it uses a similar mechanism for allowing the kerne

Re: [PATCH] cifs: Rename cERROR and cFYI to cifs_dbg

2013-03-15 Thread Jeff Layton
of embedded function name > o Removed unnecessary "cifs: " prefixes > o Convert kzalloc with multiply to kcalloc > o Remove unused cifswarn macro > -- Jeff Layton -- 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/

Re: [PATCH] cifs: Rename cERROR and cFYI to cifs_dbg

2013-03-15 Thread Jeff Layton
old kernels. The sooner Steve merges this into his for-next tree, the better. This bound to give us all sorts of merge conflicts for the 3.10 window, so we want to make sure that people know what to base their work on. Acked-by: Jeff Layton -- To unsubscribe from this list: send the line "uns

Re: [PATCH] Remove CONFIG_EXPERIMENTAL

2012-08-28 Thread Jeff Garzik
. In the past things would get CONFIG_EXPERIMENTAL until they've been tried in the field or otherwise hit some goal in the developer's mind. Is this a practical distinction? Probably not, as the markers often go unmaintained... Jeff -- To unsubscribe from this list: send the line

Re: [PATCH] NFS: Fix Oopses in nfs_lookup_revalidate and nfs4_lookup_revalidate

2012-08-28 Thread Jeff Layton
> > It is fixed upstream by commit 0b728e1911c (stop passing nameidata * > > > > to ->d_revalidate()) > > > > > > So this is just a nfs-only backport of the larger patch 0b728e1911c, > > > right? Should we also do this for other filesystems as we

Re: [PATCH] block: Fix bad range check in bio_sector_offset

2012-08-29 Thread Jeff Moyer
"Martin K. Petersen" writes: > DM would occasionally end up splitting data integrity-enabled requests > incorrectly. The culprit was a bad range check in bio_sector_offset. The patch looks ok to me, but what is the user visible behavior when this happens? Cheers, Jeff -- To

Re: [PATCH] block: Fix bad range check in bio_sector_offset

2012-08-29 Thread Jeff Moyer
"Martin K. Petersen" writes: >>>>>> "Jeff" == Jeff Moyer writes: > >>> DM would occasionally end up splitting data integrity-enabled >>> requests incorrectly. The culprit was a bad range check in >>> bio_sector_offset. >

Re: WARNING: at fs/inode.c:280 drop_nlink+0x31/0x33()

2012-08-29 Thread Jeff Layton
This stack trace comes from cifs, not nfs. Steve French has a patch queued in his tree to silence this warning that I believe he intends to send to Linus for 3.6. Perhaps we should consider backporting it for 3.5.z too? -- Jeff Layton -- To unsubscribe from this list: send the line "unsubscr

Re: Drop support for x86-32

2012-08-29 Thread Jeff Garzik
assumptions again. > Who said anything about a 12-year old machine? > > Much more likely is a 5-year old software installation > that gets moved to a new box. Or a brand new software installation into a 32-bit virtual machine. Jeff -- To unsubscribe from this list: send the line "u

Re: [QUESTION] about NFS sub system between Public Kernel and Red Hat Kernel.

2012-08-31 Thread Jeff Layton
On Fri, 31 Aug 2012 13:40:16 +0800 gchen wrote: > Hi linux-...@vger.kernel.org > > I have 1 question, and also 2 conclusions which need confirm. > > > 1) Question: > > Jeff Layton said in Red Hat Bugzilla (bug 848706): > "Have configuration where the same h

Re: WARNING: at fs/inode.c:280 drop_nlink+0x31/0x33()

2012-08-31 Thread Jeff Layton
On Fri, 31 Aug 2012 08:32:06 -0700 Nick Pasich wrote: > On Fri, Aug 31, 2012 at 12:00:26PM +0400, Pavel Shilovsky wrote: > > 2012/8/31 Nick Pasich : > > > Jeff, > > > > > > I applied this patch to Kernel 3.5.3 from Pavel and the > > > the warning

Re: [PATCH 0/4] Fix a crash when block device is read and block size is changed at the same time

2012-08-31 Thread Jeff Moyer
fferent sizeof of struct block_device (and subsequently, > different alignment of struct inode), rather than locking improvement. How many runs did you do? Did you see much run to run variation? > I would be interested if other people did performance testing of the > patches too.

Re: [PATCH 15/16] ARM: samsung: move platform_data definitions

2012-09-11 Thread Jeff Garzik
Kim Cc: Kyungmin Park Cc: Ben Dooks Cc: Mark Brown Cc: Jeff Garzik Cc: Guenter Roeck Cc: "Wolfram Sang (embedded platforms)" Cc: Dmitry Torokhov Cc: Bryan Wu Cc: Richard Purdie Cc: Sylwester Nawrocki Cc: Mauro Carvalho Chehab Cc: Chris Ball Cc: David Woodhouse Cc: Grant

Re: [PATCH 2/2] [trivial] Documentation: broken URL in libata

2012-09-12 Thread Jeff Garzik
e.org/ any more. Replace it with a snapshot from the Internet Wayback Machine. That's one option. Too bad opensource.org doesn't provide archives. OSL v1.1 is also available here: http://fedoraproject.org/wiki/Licensing:OSL1.1 and here: http://www.samurajdata.se/opensource/mirror/license

[git patches] libata new PCI IDs

2012-09-12 Thread Jeff Garzik
Please pull 7b4f6ecacb14f384adc1a5a67ad95eb082c02bd1 from git://git.kernel.org/pub/scm/linux/kernel/git/jgarzik/libata-dev.git tags/upstream-linus to receive the following updates: drivers/ata/ahci.c | 10 +- 1 files changed, 9 insertions(+), 1 deletions(-) Alan Cox (2): ahci

Re: [GIT PULL] sound fixes for 3.6-rc6

2012-09-13 Thread Jeff King
On Thu, Sep 13, 2012 at 02:28:51PM +0200, Takashi Iwai wrote: > > FWIW, it was an output from git-pull-request, which fell back to the > > equivalent branch. Usually I check it manually but I forgot it at > > this time just before going to a meeting. > > > > This was with git 1.7.11.5. I'll che

Re: [2.6 patch] remove smbfs

2008-01-30 Thread Jeff Layton
... unmaintained smbfs ..." is not quite right, see >http://lkml.org/lkml/2007/11/6/94 > Before removing it now completely, drop > Jeff Layton <[EMAIL PROTECTED]> > a note. > Afaik, Redhat still has customers which rely on smbfs. > Some of our older products use s

Re: [2.6 patch] remove smbfs

2008-01-30 Thread Jeff Layton
On Thu, 31 Jan 2008 00:58:10 +0200 Adrian Bunk <[EMAIL PROTECTED]> wrote: > On Wed, Jan 30, 2008 at 05:41:03PM -0500, Jeff Layton wrote: > > On Wed, 30 Jan 2008 22:16:13 +0100 > > Guenter Kukkukk <[EMAIL PROTECTED]> wrote: > > > > > Am Montag, 28.

Re: [2.6 patch] remove smbfs

2008-01-30 Thread Jeff Layton
On Thu, 31 Jan 2008 02:47:17 +0200 Adrian Bunk <[EMAIL PROTECTED]> wrote: > On Wed, Jan 30, 2008 at 07:34:12PM -0500, Jeff Layton wrote: > > On Thu, 31 Jan 2008 00:58:10 +0200 > > Adrian Bunk <[EMAIL PROTECTED]> wrote: > > > > > On Wed, Jan 30, 2

Re: cups slow on linux-2.6.24

2008-01-30 Thread Jeff Chua
onds for the good run. Again, using latest linux, one with 17311393f969090ab060540bd9dbe7dc885a76d5 reverted, and the other without. Thanks, Jeff. -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to [EMAIL PROTECTED] More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/

Re: cups slow on linux-2.6.24

2008-01-30 Thread Jeff Chua
r-policy=retry-job Filter for lp is .. cat $6 Filter for file is ... cat $6 >/tmp/$$ Thanks, Jeff. -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to [EMAIL PROTECTED] More majordomo info at http://vger.kernel.org/ma

Re: cups slow on linux-2.6.24

2008-01-30 Thread Jeff Chua
C1901030307) UID=0 GID=65534 This message is displayed repeatedly after the job got "stuck", once ever 3 seconds coinciding with every 3 seconds of the print job sent. Hope this helps. Jeff. -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in t

Re: [2.6 patch] ata_piix.c: make piix_merge_scr() static

2008-02-01 Thread Jeff Garzik
Adrian Bunk wrote: piix_merge_scr() can become static. Signed-off-by: Adrian Bunk <[EMAIL PROTECTED]> applied -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to [EMAIL PROTECTED] More majordomo info at http://vger.kernel.org/majordomo-info

Re: Are Section mismatches out of control?

2008-02-01 Thread Jeff Garzik
24, kernel 2.6.25-git build spews so many warnings that I need to disable section mismatch checking completely, because there is so much noise that __normal build messages scroll off the screen__. Jeff -- To unsubscribe from this list: send the line "unsubscribe linux-kernel&q

Re: [PATCH 1/4] [libata] Blackfin pata-bf54x driver: Remove obsolete PM function

2008-02-01 Thread Jeff Garzik
Bryan Wu wrote: From: Sonic Zhang <[EMAIL PROTECTED]> Signed-off-by: Sonic Zhang <[EMAIL PROTECTED]> Signed-off-by: Bryan Wu <[EMAIL PROTECTED]> --- drivers/ata/pata_bf54x.c |4 1 files changed, 0 insertions(+), 4 deletions(-) applied 1-4 -- To unsubscribe from this list: send the

Re: [PATCH 0/5] isdn: fix section mismatch warnings in isdn

2008-02-01 Thread Jeff Garzik
Sam Ravnborg wrote: I know Jeff Garzik has some ISDN clean-up patches pending but rather than waiting forever to have them acked I deciced to fix the warnings in the current kernel. Please do... Those patches are not going to be submitted for the current merge window, as I had higher

Re: [PATCH] sata_nv: fix for completion handling

2008-02-01 Thread Jeff Garzik
Robert Hancock wrote: This patch is based on an original patch from Kuan Luo of NVIDIA, posted under subject "fixed a bug of adma in rhel4u5 with HDS7250SASUN500G". His description follows. I've reworked it a bit to avoid some unnecessary repeated checks but it should be functionally identical.

Re: [PATCH] PCI: modify SB700 SATA MSI quirk

2008-02-01 Thread Jeff Garzik
Tejun Heo wrote: From: Shane Huang <[EMAIL PROTECTED]> SB700 SATA MSI bug will be fixed in SB700 revision A21 at hardware level, but the SB700 revision older than A21 will also be found in the market. This patch modify the original quirk commit bc38b411fe696fad32b261f492cb4afbf1835256 instead o

Re: [Patch] arch/um/include/init.h: Fix missing macro definitions

2008-02-01 Thread Jeff Dike
include-inith-needs-a-definition-of-__used.patch that's currently in -mm. Andrew, could you replace uml-arch-um-include-inith-needs-a-definition-of-__used.patch with the version below and push it to Linus? Jeff -- Work email - jdike at linux dot intel dot co

Re: [PATCH #upstream] libata: implement libata.force module parameter

2008-02-01 Thread Jeff Garzik
Tejun Heo wrote: This patch implements libata.force module parameter which can selectively override ATA port, link and device configurations including cable type, SATA PHY SPD limit, transfer mode and NCQ. For example, you can say "use 1.5Gbps for all fan-out ports attached to the second port bu

Re: [git Patch] UML: a build error fix

2008-02-01 Thread Jeff Dike
works, but I think doing things the way that i386 does them is cleaner. Andrew, can you stick the patch below into -mm and push it to Linus? Jeff -- Work email - jdike at linux dot intel dot com Redo the calculation of NR_syscalls since that disappeared from

  1   2   3   4   5   6   7   8   9   10   >