All of lore.kernel.org
 help / color / mirror / Atom feed
* Stray nulls when reading from AF_UNIX sockets
@ 2007-09-06 15:48 Anders Blomdell
  2007-09-06 16:09 ` Randy Dunlap
  2007-09-06 19:23 ` David Miller
  0 siblings, 2 replies; 4+ messages in thread
From: Anders Blomdell @ 2007-09-06 15:48 UTC (permalink / raw)
  To: linux-kernel

Hi,

With recent kernels (2.6.22.x), we are experiencing that random null characters
are read by  our mySQL server (i.e. the number of bytes read by the server is
larger than the number of bytes written). I'm currently investigating the
problem (that occurs every 1-35 hours on a loaded system). A current suspect is
the following code in  net/unix/af_unix.c:

  static int unix_stream_recvmsg(struct kiocb *iocb, struct socket *sock,
                                 struct msghdr *msg, size_t size,
                                 int flags)
  {
    ...
    return copied ? : err;
  }

Shouldn't this read:

    return copied ? copied : err;

Or am I missing something?

Please CC me personally.

Regards

Anders Blomdell


-- 
Anders Blomdell                  Email: anders.blomdell@control.lth.se
Department of Automatic Control
Lund University                  Phone:    +46 46 222 4625
P.O. Box 118                     Fax:      +46 46 138118
SE-221 00 Lund, Sweden

^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2007-09-07 11:52 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2007-09-06 15:48 Stray nulls when reading from AF_UNIX sockets Anders Blomdell
2007-09-06 16:09 ` Randy Dunlap
2007-09-06 19:23 ` David Miller
2007-09-07 11:52   ` Jan Engelhardt

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.