The patch titled
Make max_fds unsigned to avoid sign mismatch in comparison
has been added to the -mm tree. Its filename is
files-break-up-files-struct-warning-fix.patch
Patches currently in -mm which might be from [EMAIL PROTECTED] are
frv-add-defconfig.patch
keys-base-keyring-size-on-key-pointer-not-key-struct.patch
export-file_ra_state_init-again.patch
cachefs-filesystem.patch
cachefs-documentation.patch
add-page-becoming-writable-notification.patch
provide-a-filesystem-specific-syncable-page-bit.patch
make-afs-use-cachefs.patch
split-general-cache-manager-from-cachefs.patch
turn-cachefs-into-a-cache-backend.patch
rework-the-cachefs-documentation-to-reflect-fs-cache-split.patch
update-afs-client-to-reflect-cachefs-split.patch
make-page-becoming-writable-notification-a-vma-op-only-kafs-fix.patch
files-break-up-files-struct-warning-fix.patch
From: David Howells <[EMAIL PROTECTED]>
Make fdtable::max_fds unsigned to avoid -Wsign-compare complaining about
fcheck_files().
Signed-Off-By: David Howells <[EMAIL PROTECTED]>
Cc: Dipankar Sarma <[EMAIL PROTECTED]>
Signed-off-by: Andrew Morton <[EMAIL PROTECTED]>
---
include/linux/file.h | 2 +-
1 files changed, 1 insertion(+), 1 deletion(-)
diff -puN include/linux/file.h~files-break-up-files-struct-warning-fix
include/linux/file.h
--- 25/include/linux/file.h~files-break-up-files-struct-warning-fix Wed Jul
6 13:32:50 2005
+++ 25-akpm/include/linux/file.h Wed Jul 6 13:32:56 2005
@@ -17,7 +17,7 @@
#define NR_OPEN_DEFAULT BITS_PER_LONG
struct fdtable {
- int max_fds;
+ unsigned int max_fds;
int max_fdset;
int next_fd;
struct file ** fd; /* current fd array */
_
-
To unsubscribe from this list: send the line "unsubscribe mm-commits" in
the body of a message to [EMAIL PROTECTED]
More majordomo info at http://vger.kernel.org/majordomo-info.html