Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8387545
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 9, 20262026-06-09T18:14:30+00:00 2026-06-09T18:14:30+00:00

I’m attempting to time some functions calls made by a driver. So I called

  • 0

I’m attempting to time some functions calls made by a driver. So I called do_gettimeofday to get the struct timeval of the time. It compiles, but the linker complains thusly:

drivers/built-in.o: In function `SPC_TIMING_add':
hid-quirks.c:(.text+0x31354): undefined reference to `__aeabi_i2d'
hid-quirks.c:(.text+0x31384): undefined reference to `__aeabi_i2d'
hid-quirks.c:(.text+0x31398): undefined reference to `__aeabi_dadd'
make: *** [.tmp_vmlinux1] Error 1

I tried reading the value of xtime directly, and got the same result.

Obviously, there’s some kind of mistake in the link-order, but since I’m not sure where __aeabi_i2d and __aeabi_dadd come from, I don’t know what makefile to edit.

UPDATE: Turns out that “aeabi” means “Embedded Application Binary Interface” (EABI) for the ARM Architecture. The dadd instruction is double-precision addition, and i2d is integer-to-double conversion (according to this). I guess this means that my problem isn’t simply linking, but of convincing the compiler to use the right instruction, or a surrogate instruction (which seems to be what is being done in arch/arm/lib/lib1funcs.S).

UPDATE: According to a Google search, __aeabi_dadd is often aliased to be __adddf3, and __aeabi_i2d is aliased to __floatsidf.

UPDATE: After looking closely at the actual compiler’s output, it turns out that the error has nothing to do with do_gettimeofday. It was merely that commenting-out the call to do_gettimeofday allowed the compiler’s optimizer to remove references to a function that was performing double-precision floating point operations. Once that function was not longer being called, the error wouldn’t appear. And that’s why I thought it was being caused by do_gettimeofday.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-09T18:14:32+00:00Added an answer on June 9, 2026 at 6:14 pm

    If you’re in the kernel you probably shouldn’t be using do_gettimeofday().

    I think the right way to do it is using the ktime family of functions, eg:

    ktime_t start, end, delta;
    
    start = ktime_get();
    ...
    end = ktime_get();
    
    delta = ktime_sub(end, start);
    

    There are then a bunch of conversion routines in ktime.h for turning delta into milli/nano/etc seconds.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

link Im having trouble converting the html entites into html characters, (&# 8217;) i
I have just tried to save a simple *.rtf file with some websites and
I want to count how many characters a certain string has in PHP, but
For some reason, after submitting a string like this Jack’s Spindle from a text
I have a string like this: La Torre Eiffel paragonata all’Everest What PHP function
I'm parsing an RSS feed that has an ’ in it. SimpleXML turns this
I need to clean up various Word 'smart' characters in user input, including but
Seemingly simple, but I cannot find anything relevant on the web. What is the
I want to construct a data frame in an Rcpp function, but when I
I have some data like this: 1 2 3 4 5 9 2 6

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.