All of lore.kernel.org
 help / color / mirror / Atom feed
From: Jeff Wu <cpwu@tnsoft.com.cn>
To: Sage Weil <sage@newdream.net>,
	Gregory Farnum <gregf@hq.newdream.net>,
	yehuda <yehuda@hq.newdream.net>
Cc: ceph-devel <ceph-devel@vger.kernel.org>
Subject: [PATCH ceph-client-standalone :master-backport ] miss Makefile
Date: Wed, 8 Dec 2010 17:09:27 +0800	[thread overview]
Message-ID: <1291799367.1958.33.camel@cephhost> (raw)


Hi , 

I download ceph-client-standalone master-backport:

$git clone git://ceph.newdream.net/git/ceph-client-standalone.git
$git branch master-backport origin/master-backport
$git checkout master-backport

But ,fail to compile ceph.ko (logs ,see below).
It might be miss a Makefile ,so i add it.

Regards
Jeff C.P.Wu


==========================================================================

diff --git a/ceph-client-standalone/Makefile
b/ceph-client-standalone/Makefile
new file mode 100644
index 0000000..1b26d4b
--- /dev/null
+++ b/ceph-client-standalone/Makefile
@@ -0,0 +1,47 @@
+#
+# Makefile for CEPH filesystem.
+#
+
+ifneq ($(KERNELRELEASE),) 
+
+obj-$(CONFIG_CEPH_FS) += ceph.o
+
+ceph-objs := ceph/super.o ceph/inode.o ceph/dir.o ceph/file.o
ceph/locks.o ceph/addr.o ceph/ioctl.o \
+	ceph/export.o ceph/caps.o ceph/snap.o ceph/xattr.o \
+	ceph/mds_client.o ceph/mdsmap.o ceph/strings.o ceph/ceph_frag.o \
+	ceph/debugfs.o  \
+	libceph/ceph_common.o libceph/messenger.o libceph/msgpool.o
libceph/buffer.o libceph/pagelist.o \
+	libceph/mon_client.o \
+	libceph/osd_client.o libceph/osdmap.o libceph/crush/crush.o
libceph/crush/mapper.o libceph/crush/hash.o \
+	libceph/debugfs.o \
+	libceph/auth.o libceph/auth_none.o \
+	libceph/crypto.o libceph/armor.o \
+	libceph/auth_x.o \
+	libceph/ceph_fs.o libceph/ceph_strings.o libceph/ceph_hash.o \
+	libceph/pagevec.o
+
+clean-files += Modules_symvers
+clean-files += Module_symvers
+
+#EXTRA_CFLAGS += 
+
+else
+# Otherwise we were called directly from the command
+# line; invoke the kernel build system.
+
+KERNELRELEASE ?= $(shell uname -r)
+KERNELDIR ?= /lib/modules/$(KERNELRELEASE)/build
+PWD := $(shell pwd)
+
+
+default: all
+
+all:
+	$(MAKE) -C $(KERNELDIR) M=$(PWD) CONFIG_CEPH_FS=m modules
+
+modules_install:
+	$(MAKE) -C $(KERNELDIR) M=$(PWD) CONFIG_CEPH_FS=m modules_install
+clean:
+	$(MAKE) -C $(KERNELDIR) M=$(PWD) clean
+
+endif
diff --git a/ceph-std/libceph/ceph_common.c
b/ceph-client-standalone/libceph/ceph_common.c
index fc759f8..58feda5 100644
--- a/ceph-std/libceph/ceph_common.c
+++ b/ceph-client-standalone/libceph/ceph_common.c
@@ -487,6 +487,8 @@ int ceph_open_session(struct ceph_client *client)
 EXPORT_SYMBOL(ceph_open_session);
 
 
+#ifdef CONFIG_CEPH_LIB
+
 static int __init init_ceph_lib(void)
 {
 	int ret = 0;
@@ -522,6 +524,8 @@ static void __exit exit_ceph_lib(void)
 module_init(init_ceph_lib);
 module_exit(exit_ceph_lib);
 
+#endif 
+
 MODULE_AUTHOR("Sage Weil <sage@newdream.net>");
 MODULE_AUTHOR("Yehuda Sadeh <yehuda@hq.newdream.net>");
 MODULE_AUTHOR("Patience Warnick <patience@newdream.net>");


-------- 转发的信件 --------
> 发件人: Jeff Wu <cpwu@tnsoft.com.cn>
> Reply-to: Jeff Wu <cpwu@tnsoft.com.cn>
> 收件人: ceph-devel <ceph-devel@vger.kernel.org>
> 抄送: Andrew Lv <mllv@tnsoft.com.cn>
> 主题: Fail to compile ceph-client-standalone: master-backport
> 日期: Mon, 6 Dec 2010 13:53:43 +0800
> 
> Hi ,
> 
>  I git ceph-client-standalone : master-backport 
> from git://ceph.newdream.net/git/ceph-client-standalone.git
> 
> but fail to compile it ,what is it wrong ?  the detail steps and logs
> attached below.
> 
>  Thanks.
> 
> Jeff
> 
> 
> ===============================================================================
> 
> jeff@cephhost:~/work/ceph$ git clone
> git://ceph.newdream.net/git/ceph-client-standalone.git
> Initialized empty Git repository
> in /home/jeff/work/ceph/ceph-client-standalone/.git/
> remote: Counting objects: 2435, done.
> remote: Compressing objects: 100% (1391/1391), done.
> remote: Total 2435 (delta 1724), reused 1593 (delta 1033)
> Receiving objects: 100% (2435/2435), 760.24 KiB | 191 KiB/s, done.
> Resolving deltas: 100% (1724/1724), done.
> 
> jeff@cephhost:~/work/ceph$ cd ceph-client-standalone/
> jeff@cephhost:~/work/ceph/ceph-client-standalone$ git branch
> master-backport origin/master-backport
> Branch master-backport set up to track remote branch master-backport
> from origin.
> 
> jeff@cephhost:~/work/ceph/ceph-client-standalone$ git checkout
> master-backport
> Switched to branch 'master-backport'
> jeff@cephhost:~/work/ceph/ceph-client-standalone$ ls
> ceph  debian  dkms  dkms.conf  include-ceph  include-crush
> last_upstream_commit  libceph  rbd  start  upstream_version.h
> jeff@cephhost:~/work/ceph/ceph-client-standalone$ cd libceph/
> jeff@cephhost:~/work/ceph/ceph-client-standalone/libceph$ make
> make -C /lib/modules/2.6.35-22-generic/build
> M=/home/jeff/work/ceph/ceph-client-standalone/libceph CONFIG_CEPH_LIB=m
> modules
> 
> ....................................................................................................
> 
>   LD [M]  /home/jeff/work/ceph/ceph-client-standalone/libceph/libceph.o
>   Building modules, stage 2.
>   MODPOST 1 modules
> 
> CC      /home/jeff/work/ceph/ceph-client-standalone/libceph/libceph.mod.o
>   LD [M]  /home/jeff/work/ceph/ceph-client-standalone/libceph/libceph.ko
> make[1]:Leaving `/usr/src/linux-headers-2.6.35-22-generic'
> 
> jeff@cephhost:~/work/ceph/ceph-client-standalone/libceph$ cd ..
> jeff@cephhost:~/work/ceph/ceph-client-standalone$ cd ceph/
> jeff@cephhost:~/work/ceph/ceph-client-standalone/ceph$ make 
> make -C /lib/modules/2.6.35-22-generic/build
> M=/home/jeff/work/ceph/ceph-client-standalone/ceph CONFIG_CEPH_FS=m
> modules
> 
> ...................................................................................
> 
>   CC [M]  /home/jeff/work/ceph/ceph-client-standalone/ceph/strings.o
>   CC [M]  /home/jeff/work/ceph/ceph-client-standalone/ceph/ceph_frag.o
>   CC [M]  /home/jeff/work/ceph/ceph-client-standalone/ceph/debugfs.o
>   LD [M]  /home/jeff/work/ceph/ceph-client-standalone/ceph/ceph.o
>   Building modules, stage 2.
>   MODPOST 1 modules
> WARNING:
> "ceph_msgr_flush" [/home/jeff/work/ceph/ceph-client-standalone/ceph/ceph.ko] undefined!
> WARNING:
> "ceph_con_close" [/home/jeff/work/ceph/ceph-client-standalone/ceph/ceph.ko] undefined!
> WARNING:
> "ceph_con_init" [/home/jeff/work/ceph/ceph-client-standalone/ceph/ceph.ko] undefined!
> WARNING:
> "ceph_buffer_release" [/home/jeff/work/ceph/ceph-client-standalone/ceph/ceph.ko] undefined!
> WARNING:
> "ceph_pr_addr" [/home/jeff/work/ceph/ceph-client-standalone/ceph/ceph.ko] undefined!
> WARNING:
> "ceph_parse_options" [/home/jeff/work/ceph/ceph-client-standalone/ceph/ceph.ko] undefined!
> WARNING:
> "ceph_osdc_writepages" [/home/jeff/work/ceph/ceph-client-standalone/ceph/ceph.ko] undefined!
> WARNING:
> "ceph_monc_validate_auth" [/home/jeff/work/ceph/ceph-client-standalone/ceph/ceph.ko] undefined!
> WARNING:
> "ceph_monc_do_statfs" [/home/jeff/work/ceph/ceph-client-standalone/ceph/ceph.ko] undefined!
> WARNING:
> "ceph_alloc_page_vector" [/home/jeff/work/ceph/ceph-client-standalone/ceph/ceph.ko] undefined!
> WARNING:
> "__ceph_open_session" [/home/jeff/work/ceph/ceph-client-standalone/ceph/ceph.ko] undefined!
> WARNING:
> "ceph_copy_user_to_page_vector" [/home/jeff/work/ceph/ceph-client-standalone/ceph/ceph.ko] undefined!
> WARNING:
> "ceph_destroy_client" [/home/jeff/work/ceph/ceph-client-standalone/ceph/ceph.ko] undefined!
> WARNING:
> "ceph_osdc_sync" [/home/jeff/work/ceph/ceph-client-standalone/ceph/ceph.ko] undefined!
> WARNING:
> "ceph_pagelist_release" [/home/jeff/work/ceph/ceph-client-standalone/ceph/ceph.ko] undefined!
> WARNING:
> "ceph_put_page_vector" [/home/jeff/work/ceph/ceph-client-standalone/ceph/ceph.ko] undefined!
> WARNING:
> "ceph_buffer_new" [/home/jeff/work/ceph/ceph-client-standalone/ceph/ceph.ko] undefined!
> WARNING:
> "ceph_msg_dump" [/home/jeff/work/ceph/ceph-client-standalone/ceph/ceph.ko] undefined!
> WARNING:
> "ceph_compare_options" [/home/jeff/work/ceph/ceph-client-standalone/ceph/ceph.ko] undefined!
> WARNING:
> "ceph_osdc_start_request" [/home/jeff/work/ceph/ceph-client-standalone/ceph/ceph.ko] undefined!
> WARNING:
> "ceph_zero_page_vector_range" [/home/jeff/work/ceph/ceph-client-standalone/ceph/ceph.ko] undefined!
> WARNING:
> "ceph_con_send" [/home/jeff/work/ceph/ceph-client-standalone/ceph/ceph.ko] undefined!
> WARNING:
> "ceph_osdc_readpages" [/home/jeff/work/ceph/ceph-client-standalone/ceph/ceph.ko] undefined!
> WARNING:
> "ceph_monc_got_mdsmap" [/home/jeff/work/ceph/ceph-client-standalone/ceph/ceph.ko] undefined!
> WARNING:
> "ceph_calc_file_object_mapping" [/home/jeff/work/ceph/ceph-client-standalone/ceph/ceph.ko] undefined!
> WARNING:
> "ceph_pagelist_set_cursor" [/home/jeff/work/ceph/ceph-client-standalone/ceph/ceph.ko] undefined!
> WARNING:
> "ceph_osdc_new_request" [/home/jeff/work/ceph/ceph-client-standalone/ceph/ceph.ko] undefined!
> WARNING:
> "ceph_osdc_wait_request" [/home/jeff/work/ceph/ceph-client-standalone/ceph/ceph.ko] undefined!
> WARNING:
> "ceph_get_direct_page_vector" [/home/jeff/work/ceph/ceph-client-standalone/ceph/ceph.ko] undefined!
> WARNING:
> "ceph_calc_object_layout" [/home/jeff/work/ceph/ceph-client-standalone/ceph/ceph.ko] undefined!
> WARNING:
> "ceph_pagelist_append" [/home/jeff/work/ceph/ceph-client-standalone/ceph/ceph.ko] undefined!
> WARNING:
> "ceph_pagelist_reserve" [/home/jeff/work/ceph/ceph-client-standalone/ceph/ceph.ko] undefined!
> WARNING:
> "ceph_check_fsid" [/home/jeff/work/ceph/ceph-client-standalone/ceph/ceph.ko] undefined!
> WARNING:
> "ceph_release_page_vector" [/home/jeff/work/ceph/ceph-client-standalone/ceph/ceph.ko] undefined!
> WARNING:
> "ceph_pagelist_truncate" [/home/jeff/work/ceph/ceph-client-standalone/ceph/ceph.ko] undefined!
> WARNING:
> "ceph_msg_type_name" [/home/jeff/work/ceph/ceph-client-standalone/ceph/ceph.ko] undefined!
> WARNING:
> "ceph_msg_new" [/home/jeff/work/ceph/ceph-client-standalone/ceph/ceph.ko] undefined!
> WARNING:
> "ceph_copy_page_vector_to_user" [/home/jeff/work/ceph/ceph-client-standalone/ceph/ceph.ko] undefined!
> WARNING:
> "ceph_caps_for_mode" [/home/jeff/work/ceph/ceph-client-standalone/ceph/ceph.ko] undefined!
> WARNING:
> "ceph_msg_last_put" [/home/jeff/work/ceph/ceph-client-standalone/ceph/ceph.ko] undefined!
> WARNING:
> "ceph_flags_to_mode" [/home/jeff/work/ceph/ceph-client-standalone/ceph/ceph.ko] undefined!
> WARNING:
> "ceph_con_open" [/home/jeff/work/ceph/ceph-client-standalone/ceph/ceph.ko] undefined!
> WARNING:
> "ceph_osdc_release_request" [/home/jeff/work/ceph/ceph-client-standalone/ceph/ceph.ko] undefined!
> WARNING:
> "ceph_calc_pg_primary" [/home/jeff/work/ceph/ceph-client-standalone/ceph/ceph.ko] undefined!
> WARNING:
> "ceph_create_client" [/home/jeff/work/ceph/ceph-client-standalone/ceph/ceph.ko] undefined!
> WARNING:
> "ceph_con_keepalive" [/home/jeff/work/ceph/ceph-client-standalone/ceph/ceph.ko] undefined!
>   CC      /home/jeff/work/ceph/ceph-client-standalone/ceph/ceph.mod.o
>   LD [M]  /home/jeff/work/ceph/ceph-client-standalone/ceph/ceph.ko
> make[1]:leaving `/usr/src/linux-headers-2.6.35-22-generic'
> jeff@cephhost:~/work/ceph/ceph-client-standalone/ceph$ 
> 
> 
> 
> 

--
To unsubscribe from this list: send the line "unsubscribe ceph-devel" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

             reply	other threads:[~2010-12-08  9:08 UTC|newest]

Thread overview: 3+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2010-12-08  9:09 Jeff Wu [this message]
2010-12-14  3:01 ` [PATCH ceph-client-standalone :master-backport ] miss Makefile Jeff Wu
2010-12-14  3:40   ` Jeff Wu

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=1291799367.1958.33.camel@cephhost \
    --to=cpwu@tnsoft.com.cn \
    --cc=ceph-devel@vger.kernel.org \
    --cc=gregf@hq.newdream.net \
    --cc=sage@newdream.net \
    --cc=yehuda@hq.newdream.net \
    /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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.