All of lore.kernel.org
 help / color / mirror / Atom feed
From: Dong Fang <yp.fangdong@gmail.com>
To: Chris Mason <chris.mason@fusionio.com>
Cc: Chris Mason <clmason@fusionio.com>,
	Mathieu Desnoyers <mathieu.desnoyers@efficios.com>,
	Linux FS Devel <linux-fsdevel@vger.kernel.org>,
	David Woodhouse <David.Woodhouse@intel.com>,
	"dchinner@redhat.com" <dchinner@redhat.com>,
	"bo.li.liu@oracle.com" <bo.li.liu@oracle.com>,
	"rp@svcs.cs.pdx.edu" <rp@svcs.cs.pdx.edu>,
	"Paul E. McKenney" <paulmck@linux.vnet.ibm.com>,
	Lai Jiangshan <laijs@cn.fujitsu.com>,
	Stephen Hemminger <shemminger@vyatta.com>,
	Alan Stern <stern@rowland.harvard.edu>
Subject: Re: [PATCH RFC 1/2] Skiplist: rcu range index
Date: Sun, 14 Jul 2013 10:06:40 -0400	[thread overview]
Message-ID: <51E2B070.3000003@gmail.com> (raw)
In-Reply-To: <20130616145725.4914.62425@localhost.localdomain>


On 06/16/2013 10:57 AM, Chris Mason wrote:
 > Signed-off-by: Chris Mason <chris.mason@fusionio.com>
 > ---
 >   include/linux/skiplist.h |  235 ++++++
 >   init/main.c              |    5 +
 >   lib/Kconfig              |   14 +
 >   lib/Makefile             |    3 +
 >   lib/skiplist.c           | 2106 
++++++++++++++++++++++++++++++++++++++++++++++
 >   lib/skiplist_test.c      |  882 +++++++++++++++++++
 >   6 files changed, 3245 insertions(+)
 >   create mode 100644 include/linux/skiplist.h
 >   create mode 100644 lib/skiplist.c
 >   create mode 100644 lib/skiplist_test.c
 >
...
 > +
 > +static void pretty_time(struct timespec *ts, unsigned long long 
*seconds, unsigned long long *ms)
 > +{
 > +    unsigned long long m;
 > +
 > +    *seconds = ts->tv_sec;
 > +
 > +    m = ts->tv_nsec / 1000000ULL;
Linux: centos 6.4 32bit 3.10
Gcc version: gcc (GCC) 4.4.7 20120313 (Red Hat 4.4.7-3)

compiler error:

   CC [M]  lib/skiplist_test.o
   Building modules, stage 2.
   MODPOST 12 modules
ERROR: "__udivdi3" [lib/skiplist_test.ko] undefined!

 > +    *ms = m;
 > +}
 > +
...

  reply	other threads:[~2013-07-14  2:08 UTC|newest]

Thread overview: 12+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2013-06-16 14:56 [PATCH RFC 0/2] rcu skiplists v2 Chris Mason
2013-06-16 14:57 ` [PATCH RFC 1/2] Skiplist: rcu range index Chris Mason
2013-07-14 14:06   ` Dong Fang [this message]
2013-06-16 14:58 ` [PATCH RFC 2/2] Switch the IOMMU over to the skiplists Chris Mason
2013-06-26 23:02 ` [PATCH RFC 0/2] rcu skiplists v2 Mathieu Desnoyers
2013-06-26 23:51   ` Chris Mason
2013-06-27  2:29     ` Mathieu Desnoyers
2013-06-27  4:46       ` Chris Mason
2013-06-27 11:42         ` Mathieu Desnoyers
2013-06-27  5:19       ` Dave Chinner
2013-06-27 10:55         ` [BULK] " Chris Mason
2013-06-27 12:12         ` Mathieu Desnoyers

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=51E2B070.3000003@gmail.com \
    --to=yp.fangdong@gmail.com \
    --cc=David.Woodhouse@intel.com \
    --cc=bo.li.liu@oracle.com \
    --cc=chris.mason@fusionio.com \
    --cc=clmason@fusionio.com \
    --cc=dchinner@redhat.com \
    --cc=laijs@cn.fujitsu.com \
    --cc=linux-fsdevel@vger.kernel.org \
    --cc=mathieu.desnoyers@efficios.com \
    --cc=paulmck@linux.vnet.ibm.com \
    --cc=rp@svcs.cs.pdx.edu \
    --cc=shemminger@vyatta.com \
    --cc=stern@rowland.harvard.edu \
    /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.