Comment 5 for bug 1223034

Revision history for this message
Maxim Uvarov (maxim-uvarov) wrote :

man cacheflush

says:

CONFORMING TO
       This Linux-specific system call is only available on MIPS-based systems. It should not be used in programs intended to be portable.

Arm has different syscall:
 case NR(cacheflush):
  return do_cache_op(regs->ARM_r0, regs->ARM_r1, regs->ARM_r2);

static inline int
do_cache_op(unsigned long start, unsigned long end, int flags);

So test case is not applicable for arm.