]> git.pld-linux.org Git - packages/shfs.git/commitdiff
- api adaptations
authorzbyniu <zbyniu@pld-linux.org>
Mon, 14 Apr 2008 00:11:04 +0000 (00:11 +0000)
committercvs2git <feedback@pld-linux.org>
Sun, 24 Jun 2012 12:13:13 +0000 (12:13 +0000)
Changed files:
    shfs-2.6.19.patch -> 1.2
    shfs-shfs_get_sb.patch -> 1.2

shfs-2.6.19.patch
shfs-shfs_get_sb.patch

index c7d338ea7a3b5fd7e4520928dca0426fa699ffcf..b666d3d9ee3c0f534bc696825d01a15ee6229f6a 100644 (file)
                SIGLOCK(flags);
                if (result == -EPIPE && !sigpipe) {
                        sigdelset(&current->pending.signal, SIGPIPE);
+@@ -621,9 +621,15 @@ error:
+ }
+ int
++#if (LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,19))
++shfs_statfs(struct dentry *dentry, struct kstatfs *attr)
++{
++      struct shfs_sb_info *info = info_from_sb(dentry->d_sb);
++#else
+ shfs_statfs(struct super_block *sb, struct kstatfs *attr)
+ {
+       struct shfs_sb_info *info = info_from_sb(sb);
++#endif
+       DEBUG("\n");
+       return info->fops.statfs(info, attr); 
 --- shfs-0.35/shfs/Linux-2.6/shfs.h~   2004-06-01 13:16:19.000000000 +0000
 +++ shfs-0.35/shfs/Linux-2.6/shfs.h    2007-03-28 17:31:34.271161000 +0000
 @@ -23,6 +23,7 @@
  
  struct shfs_fattr {
        unsigned long   f_ino;
+--- shfs-0.35/shfs/Linux-2.6/shfs_fs.h~   2008-04-14 01:30:03.437923642 +0200
++++ shfs-0.35/shfs/Linux-2.6/shfs_fs.h    2008-04-14 01:33:19.924419671 +0200
+@@ -100,7 +100,11 @@ int reply(char *s);
+ void set_garbage(struct shfs_sb_info *info, int write, int count);
+ int get_name(struct dentry *d, char *name);
+ int shfs_notify_change(struct dentry *dentry, struct iattr *attr);
++#if (LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,19))
++int shfs_statfs(struct dentry *dentry, struct kstatfs *attr);
++#else
+ int shfs_statfs(struct super_block *sb, struct kstatfs *attr);
++#endif
+       
+ /* shfs/inode.c */
+ void shfs_set_inode_attr(struct inode *inode, struct shfs_fattr *fattr);
index 0971c66f5a1665a742929483bc020269f323de36..59e9591872acf16fa36920646c58fb574056a0dd 100644 (file)
@@ -12,7 +12,7 @@
        return get_sb_nodev(fs_type, flags, data, shfs_read_super);
  }
 +#else
-+static struct super_block *
++static int
 +shfs_get_sb(struct file_system_type *fs_type,
 +          int flags, const char *dev_name, void *data,
 +          struct vfsmount *mnt)
This page took 0.063021 seconds and 4 git commands to generate.