2003-06-22 08:45:42

by Ren

[permalink] [raw]
Subject: [PATCH] [CIFS] Fix compile warning for fs/cifs/cifsfs.c

Hi,

this patch fixes a compile warning about incompatible types in
fs/cifs/cifsfs.c in cifs_statfs(). This function is called with
a pointer to a struct kstatfs, so let's propagate this type into
the helper function.

Ren?



diff -u ./fs/cifs/cifsproto.h~ ./fs/cifs/cifsproto.h
--- ./fs/cifs/cifsproto.h~ 2003-06-22 10:04:00.000000000 +0200
+++ ./fs/cifs/cifsproto.h 2003-06-22 10:52:06.000000000 +0200
@@ -137,7 +137,7 @@
const char *old_path, const struct nls_table *nls_codepage,
unsigned int *pnum_referrals, unsigned char ** preferrals);
extern int CIFSSMBQFSInfo(const int xid, struct cifsTconInfo *tcon,
- struct statfs *FSData,
+ struct kstatfs *FSData,
const struct nls_table *nls_codepage);
extern int CIFSSMBQFSAttributeInfo(const int xid,
struct cifsTconInfo *tcon,
diff -u ./fs/cifs/cifssmb.c~ ./fs/cifs/cifssmb.c
--- ./fs/cifs/cifssmb.c~ 2003-06-14 21:18:01.000000000 +0200
+++ ./fs/cifs/cifssmb.c 2003-06-22 10:51:30.000000000 +0200
@@ -1782,7 +1782,7 @@

int
CIFSSMBQFSInfo(const int xid, struct cifsTconInfo *tcon,
- struct statfs *FSData, const struct nls_table *nls_codepage)
+ struct kstatfs *FSData, const struct nls_table *nls_codepage)
{
/* level 0x103 SMB_QUERY_FILE_SYSTEM_INFO */
TRANSACTION2_QFSI_REQ *pSMB = NULL;



2003-06-22 09:26:20

by Andrew Morton

[permalink] [raw]
Subject: Re: [PATCH] [CIFS] Fix compile warning for fs/cifs/cifsfs.c

Ren? Scharfe <[email protected]> wrote:
>
> this patch fixes a compile warning about incompatible types in
> fs/cifs/cifsfs.c in cifs_statfs().

oop, sorry. I'll send that in, thanks.