1. 07 Aug, 2004 22 commits
  2. 06 Aug, 2004 14 commits
  3. 05 Aug, 2004 4 commits
    • Linus Torvalds's avatar
      Make the new simple_read_from_buffer() take a const src · 9f53c6cc
      Linus Torvalds authored
      buffer without complaints.
      9f53c6cc
    • Alexander Viro's avatar
      [PATCH] Fix ppc htab seq_file conversion · 57ddad15
      Alexander Viro authored
      *grrrrrrrr*
      
      Wrong diff sent.  Sorry - normally the tree I'm working in is cp -rl'ed
      from the -current, but right now it's a big mess.
      
      This is the incremental fix.
      57ddad15
    • Alexander Viro's avatar
      [PATCH] ppc: seq_file conversion for ppc_htab · 00c9e926
      Alexander Viro authored
      This converts the 32-bit ppc htab code to use the seq_file interfaces.
      
      Less code means fewer bugs..
      00c9e926
    • Alexander Viro's avatar
      [PATCH] ppc64: Fix rtas file mess · ca4a6985
      Alexander Viro authored
      This does the seq_file conversion + annotation + cleanup + race fixes
      for arch/ppc64/kernel/rtas-proc.c.
      
      How the fuck did that file manage to get anywhere near the tree, anyway?
      Take a look at guy's "implementation" of sprintf(buf, "%04d", num), for
      example:
      
      <vomit>
      	/* construct the sensor number like 0003 */
      	/* fill with zeros */
      	n = sprintf(tmp, "%d", s.token);
      	len = strlen(tmp);
      	while (strlen(tmp) < 4)
      		n += sprintf (tmp+n, "0");
      
      	/* invert the string */
      	while (tmp[i]) {
      		if (i<len)
      			tmp2[4-len+i] = tmp[i];
      		else
      			tmp2[3-i] = tmp[i];
      		i++;
      	}
      	tmp2[4] = '\0';
      </vomit>
      
      And it's full of that level of lusing ;-/
      ca4a6985