[00/20] 2.6.32.54-longterm review

January 10th, 2012 - 03:20 pm ET by Greg KH | Report spam
This is the start of the longterm review cycle for the 2.6.32.@rel@ release.
There are 20 patches in this series, all will be posted as a response
to this one. If anyone has any issues with these being applied, please
let us know. If anyone is a maintainer of the proper subsystem, and
wants to add a Signed-off-by: line to the patch, please respond with it.

Responses should be made by Thursday, January 12, 20:00:00 UTC.
Anything received after that time might be too late.

The whole patch series can be found in one patch at:
kernel.org/pub/linux/kernel/v2.6/longterm-review/patch-2.6.32.54-rc1.gz
and the diffstat can be found below.

thanks,

greg k-h

Documentation/HOWTO | 4 +-
Documentation/development-process/5.Posting | 8 ++--
Documentation/usb/usbmon.txt | 14 +++--
MAINTAINERS | 2 +-
Makefile | 2 +-
drivers/base/firmware_class.c | 14 +++
drivers/net/usb/asix.c | 6 ++-
drivers/scsi/device_handler/scsi_dh.c | 7 ++-
drivers/usb/class/cdc-acm.c | 4 ++
drivers/usb/core/quirks.c | 5 ++-
drivers/usb/misc/isight_firmware.c | 6 ++-
drivers/usb/serial/cp210x.c | 1 +
drivers/usb/serial/omninet.c | 2 +-
drivers/usb/storage/usb.c | 1 +
drivers/video/offb.c | 52 +++++++++-
fs/reiserfs/super.c | 27 ++++++-
fs/xfs/linux-2.6/xfs_acl.c | 4 +-
kernel/cpu.c | 74 +++++++++++++++++++++++++++
18 files changed, 167 insertions(+), 66 deletions(-)
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
email Follow the discussionReplies 9 repliesReplies Make a reply

Replies

#1 Greg KH
January 10th, 2012 - 03:20 pm ET | Report spam
2.6.32-longterm review patch. If anyone has any objections, please let me know.



From: Jan Kara

commit a06d789b424190e9f59da391681f908486db2554 upstream.

When jqfmt mount option is not specified on remount, we mistakenly clear
s_jquota_fmt value stored in superblock. Fix the problem.

CC:
Signed-off-by: Jan Kara
Signed-off-by: Greg Kroah-Hartman


fs/reiserfs/super.c | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)

a/fs/reiserfs/super.c
+++ b/fs/reiserfs/super.c
@@ -1149,7 +1149,8 @@ static void handle_quota_files(struct su
kfree(REISERFS_SB(s)->s_qf_names[i]);
REISERFS_SB(s)->s_qf_names[i] = qf_names[i];
}
- REISERFS_SB(s)->s_jquota_fmt = *qfmt;
+ if (*qfmt)
+ REISERFS_SB(s)->s_jquota_fmt = *qfmt;
}
#endif



To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/

Similar topics