All of lore.kernel.org
 help / color / mirror / Atom feed
From: "Vladimir V. Saveliev" <vs@namesys.com>
To: Gabor HALASZ <halasz.g@freemail.hu>,
	ReiserFS Mailing List <reiserfs-list@namesys.com>
Subject: Re: we have got hash function screwed up
Date: Tue, 06 Sep 2005 16:06:51 +0400	[thread overview]
Message-ID: <431D865B.8040604@namesys.com> (raw)
In-Reply-To: <431D72C5.105@freemail.hu>

[-- Attachment #1: Type: text/plain, Size: 1642 bytes --]

Hello

Gabor HALASZ wrote:
> Vladimir V. Saveliev wrote:
>> Hello
>>
>> michael chang wrote:
>>
>>> On 9/5/05, Gabor HALASZ <halasz.g@freemail.hu> wrote:
>>>
>>>
>>>> root@sk8n:~# touch
>>>> /home/ftpd/pub/debian/pool/main/x/xorg-x11/.in.xserver-xorg_6.8.2.dfsg.1-6_i386.deb
>>>>
>>>> touch: cannot touch
>>>> `/home/ftpd/pub/debian/pool/main/x/xorg-x11/.in.xserver-xorg_6.8.2.dfsg.1-6_i386.deb':
>>>>
>>>> Device or resource busy
>>>
>>>> What can I do?!
>>>
>>
>> Can you send output of ls /home/ftpd/pub/debian/pool/main/x/xorg-x11/ ?
> 
> It's really required?! Contains only 156 .deb files, mirrored from
> de.debian.org.
> 

Yes. It looks like something is wrong in that directory. Would you please run the attached program:
readdir /home/ftpd/pub/debian/pool/main/x/xorg-x11/ and send the output?


>> You should be able to create this file in other directory.
> 
> root@sk8n:~# touch
> /home/ftpd/pub/debian/pool/main/x/xorg-x11/.in.xserver-xorg_6.8.2.dfsg.1-6_i386.deb
> 
> touch: cannot touch
> `/home/ftpd/pub/debian/pool/main/x/xorg-x11/.in.xserver-xorg_6.8.2.dfsg.1-6_i386.deb':
> Device or resource busy
> root@sk8n:~# touch
> /home/ftpd/pub/debian/pool/main/x/.in.xserver-xorg_6.8.2.dfsg.1-6_i386.deb
> 
> 
>> Or create file with other name in that directory.
> 
> root@sk8n:~# touch
> /home/ftpd/pub/debian/pool/main/x/xorg-x11/.in.xserver-xorg_6.8.2.dfsg.1-6_i386.deb
> 
> touch: cannot touch
> `/home/ftpd/pub/debian/pool/main/x/xorg-x11/.in.xserver-xorg_6.8.2.dfsg.1-6_i386.deb':
> Device or resource busy
> root@sk8n:~# touch
> /home/ftpd/pub/debian/pool/main/x/xorg-x11/.in.xserver-xorg_6.8.2.dfsg.1-6_i386.dec
> 
> 
> 


[-- Attachment #2: readdir.c --]
[-- Type: text/x-c, Size: 476 bytes --]

#include <stdio.h>
#include <dirent.h>

int main(int argc, char **argv)
{
	DIR *dp;
	struct dirent *ep;
	int nr;

	if (argc != 2) {
		printf("usage: %s dirname\n", argv[0]);
		return 0;
	}
	dp = opendir (argv[1]);
	if (dp == NULL) {
		perror("openfailed");
		return 0;
	}
	nr = 0;
	while ((ep = readdir(dp))) {
		printf("\"%s\", len %d, off %ld\n",
		       ep->d_name, ep->d_reclen, ep->d_off);
		nr ++;
	}
	closedir(dp);

	printf("%d entried are read\n", nr);
	return 0;
}


  parent reply	other threads:[~2005-09-06 12:06 UTC|newest]

Thread overview: 10+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2005-09-05 16:34 we have got hash function screwed up Gabor HALASZ
2005-09-05 17:31 ` michael chang
2005-09-06  9:10   ` Vladimir V. Saveliev
     [not found]     ` <431D72C5.105@freemail.hu>
2005-09-06 12:06       ` Vladimir V. Saveliev [this message]
2005-09-05 17:51 ` Konstantin Münning
2005-09-06 11:23 ` Nikita Danilov
2005-09-10 15:36 ` evilninja
2005-09-11  3:00   ` Valdis.Kletnieks
2005-09-11 22:49     ` evilninja
2005-09-12  1:02       ` Valdis.Kletnieks

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=431D865B.8040604@namesys.com \
    --to=vs@namesys.com \
    --cc=halasz.g@freemail.hu \
    --cc=reiserfs-list@namesys.com \
    /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.