public inbox for linux-btrfs@vger.kernel.org
 help / color / mirror / Atom feed
From: "Филип Брчић" <brcha@gna.org>
To: linux-btrfs@vger.kernel.org
Subject: [PATCH] (semi)revert compat.h to old version
Date: Fri, 16 Jan 2009 20:06:59 +0100	[thread overview]
Message-ID: <200901162007.28447.brcha@gna.org> (raw)


[-- Attachment #1.1: Type: text/plain, Size: 391 bytes --]

Hi,

Without this patch btrfs doesn't compile on my system. I have Linux 2.6.27.8 
on x86_64 compiled with gcc 4.1.2.

This is mostly the old compat.h with one typedef removed (typedef unsigned 
__bitwise__ fmode_t;) as it was already defined on my system.

Happy hacking :)
Brcha

-- 
Filip Brčić <brcha@gna.org>
WWWeb: http://www.brcha.iz.rs
Jabber: brcha@kdetalk.net



[-- Attachment #1.2: btrfs-unstable-standalone-compat.patch --]
[-- Type: text/x-patch, Size: 842 bytes --]

diff --git a/compat.h b/compat.h
index 7c4503e..204cda7 100644
--- a/compat.h
+++ b/compat.h
@@ -4,4 +4,29 @@
 #define btrfs_drop_nlink(inode) drop_nlink(inode)
 #define btrfs_inc_nlink(inode)	inc_nlink(inode)
 
+#if LINUX_VERSION_CODE <= KERNEL_VERSION(2, 6, 27)
+static inline struct dentry *d_obtain_alias(struct inode *inode)
+{
+	struct dentry *d;
+
+	if (!inode)
+		return NULL;
+	if (IS_ERR(inode))
+		return ERR_CAST(inode);
+
+	d = d_alloc_anon(inode);
+	if (!d)
+		iput(inode);
+	return d;
+}
+#endif
+
+#if LINUX_VERSION_CODE < KERNEL_VERSION(2, 6, 28)
+# define  __pagevec_lru_add_file __pagevec_lru_add
+# define open_bdev_exclusive open_bdev_excl
+# define close_bdev_exclusive(bdev, mode) close_bdev_excl(bdev)
+/* typedef unsigned __bitwise__ fmode_t; */
+#endif
+
+
 #endif /* _COMPAT_H_ */

[-- Attachment #2: This is a digitally signed message part. --]
[-- Type: application/pgp-signature, Size: 197 bytes --]

                 reply	other threads:[~2009-01-16 19:06 UTC|newest]

Thread overview: [no followups] expand[flat|nested]  mbox.gz  Atom feed

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=200901162007.28447.brcha@gna.org \
    --to=brcha@gna.org \
    --cc=linux-btrfs@vger.kernel.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox