Login
[x]
Log in using an account from:
Fedora Account System
Red Hat Associate
Red Hat Customer
Or login using a Red Hat Bugzilla account
Forgot Password
Login:
Hide Forgot
Create an Account
Red Hat Bugzilla – Attachment 240331 Details for
Bug 355141
pull upstream patches for smbfs
[?]
New
Simple Search
Advanced Search
My Links
Browse
Requests
Reports
Current State
Search
Tabular reports
Graphical reports
Duplicates
Other Reports
User Changes
Plotly Reports
Bug Status
Bug Severity
Non-Defaults
|
Product Dashboard
Help
Page Help!
Bug Writing Guidelines
What's new
Browser Support Policy
5.0.4.rh83 Release notes
FAQ
Guides index
User guide
Web Services
Contact
Legal
This site requires JavaScript to be enabled to function correctly, please enable it.
[patch]
patch 6
0016-BZ-355141-smbfs-Fix-debug-logging-only-compilation.patch (text/plain), 1.19 KB, created by
Jeff Layton
on 2007-10-27 11:50:01 UTC
(
hide
)
Description:
patch 6
Filename:
MIME Type:
Creator:
Jeff Layton
Created:
2007-10-27 11:50:01 UTC
Size:
1.19 KB
patch
obsolete
>From a9736f8b2cbde456c975c6f70749100b83f0a3cd Mon Sep 17 00:00:00 2001 >From: Jeff Layton <jlayton@redhat.com> >Date: Sat, 27 Oct 2007 07:06:45 -0400 >Subject: [PATCH] BZ#355141: smbfs: Fix debug logging-only compilation error > >When SMBFS_DEBUG_VERBOSE is #define-d, the compile breaks: > >fs/smbfs/inode.c:217: error: aggregate value used where an integer was expected > >This is a simple matter of using the .tv_sec attribute of struct time_spec. > >Signed-off-by: Kirk True <kernel@kirkandsheila.com> >Signed-off-by: Andrew Morton <akpm@osdl.org> >Signed-off-by: Linus Torvalds <torvalds@osdl.org> >--- > fs/smbfs/inode.c | 2 +- > 1 files changed, 1 insertions(+), 1 deletions(-) > >diff --git a/fs/smbfs/inode.c b/fs/smbfs/inode.c >index a567fd0..d0d3317 100644 >--- a/fs/smbfs/inode.c >+++ b/fs/smbfs/inode.c >@@ -216,7 +216,7 @@ smb_set_inode_attr(struct inode *inode, struct smb_fattr *fattr) > if (inode->i_mtime.tv_sec != last_time || inode->i_size != last_sz) { > VERBOSE("%ld changed, old=%ld, new=%ld, oz=%ld, nz=%ld\n", > inode->i_ino, >- (long) last_time, (long) inode->i_mtime, >+ (long) last_time, (long) inode->i_mtime.tv_sec, > (long) last_sz, (long) inode->i_size); > > if (!S_ISDIR(inode->i_mode)) >-- >1.5.2.1 >
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Diff
View Attachment As Raw
Actions:
View
|
Diff
Attachments on
bug 355141
:
240281
|
240291
|
240301
|
240311
|
240321
| 240331 |
240341
|
271431