Make-initrd development discussion
 help / color / mirror / Atom feed
From: Leonid Krivoshein <klark.devel@gmail.com>
To: make-initrd@lists.altlinux.org
Subject: Re: [make-initrd] [PATCH 1/3] Reimplement ueventd
Date: Sat, 20 May 2023 20:23:26 +0300
Message-ID: <5522f0c1-adac-3db7-e569-05cda6d05d58@gmail.com> (raw)
In-Reply-To: <ZGjIq0Z2RQsFFzxR@example.org>


On 5/20/23 16:18, Alexey Gladkov wrote:
> On Sat, May 20, 2023 at 12:00:14PM +0300, Leonid Krivoshein wrote:
>> [...]
>>> [...]
>>> +
>>> +typedef int (*fdhandler_t)(int);
>>> +
>>> +struct fd_handler {
>>> +	int fd;
>>> +	fdhandler_t fd_handler;
>>> +};
>>> +
>>> +struct fd_handler fd_list[FD_MAX];
>> [...]
>> Имя fd_list[] тоже не очень подходящее, поскольку это не только список
>> именно fd.
> Принимаю предложения на более удачное название ))

fdhs или fdh_list, но и новое (fd_handler_list) вполне подходит -- 
больше fd_handler'ов. ))


>> Константа FD_MAX, хоть и не определена в использованных
>> заголовочных файлах, это имя иногда встречается рядом с FD_SET(),
>> FD_CLR() и им подобным макросам в других исходниках как функция
>> FD_MAX(x). На всякий случай...
> Это имя ни с чем не конфликтует.
>
> $ grep -re '\<FD_MAX\>' /usr/include | wc -l
> 0

Да, но используется зарезервированный префикс FD_, что с каким-то 
очередным изменением хедеров потенциально может дать конфликт.


>>> +
>>> +enum {
>>> +	PIPE_READ,
>>> +	PIPE_WRITE,
>>> +	PIPE_MAX,
>>> +};
>>> +
>>> +int pipefd[PIPE_MAX];
>> Данным фрагментом ты как бы говоришь: "я точно знаю, во что это
>> превратит компилятор", слишком безапелляционно.
> Стандарт си говорит:

Пока у компилятора не появится глобальная опция, меняющая стартовое 
значение для enum, и её не поменяет кто-нибудь в сборочной среде 
глобально, беспокоиться и правда не стоит.


> [...]
>>> +		fdcount = epoll_wait(epollfd, ev, EV_MAX, 250);
>> Почему 250, а не -1? Напоминает не нужный в этом месте "sleep .25". Если
>> бы демон перезапускался для дефрагментации через какое-то число событий
>> или спустя сколько-то минут, а тут совсем холостой ход получается.
> Это сделано намеренно. Раньше ты спрашивал зачем отправлять wfd родителю
> через пайп. Родитель помечает очередь как F_DIRTY и на следующей итерации
> эта очередь попробует обработаться даже если новых эвентов нет.

Тогда стоит ввести флаг и заменить 250 на что-то вроде:

have_dirty ? 250: -1


>>> +
>>> +		if (fdcount < 0) {
>>> +			if (errno == EINTR)
>>> +				continue;
>>> +			fatal("epoll_wait: %m");
>>> +		}
>>> +
>>> +		for (i = 0; i < fdcount; i++) {
>>> +			if (!(ev[i].events & EPOLLIN))
>>> +				continue;
>>> +			for (int k = 0; k < FD_MAX; k++) {
>>> +				if (ev[i].data.fd != fd_list[k].fd)
>>> +					continue;
>>> +				if (fd_list[k].fd_handler(fd_list[k].fd) != 0)
>> Непонятно, почему из всей структуры Userdata используется только
>> ev->data->fd и потом элементы перебираются в циклах для поиска и
>> сопоставления, хотя в ev->data при epoll_ctl(..., EPOL_CTL_ADD, ...)
>> вполне можно было бы разместить всё самое интересное для ускорения доступа.
> Всё? Это union.

Не заметил сразу, что это union. Раз так, то уже выбранный ev->data->ptr 
мне тоже нравится больше.


> Я мог бы положить туда либо fd, либо указатель на
> fd_list[k]. В целом так и стоит сделать. Раньше fd_list не было и остался
> этот атавизм. Но это позволит избавиться от цикла только в этом месте.
>
> [...]


-- 
WBR, Leonid Krivoshein.



  parent reply	other threads:[~2023-05-20 17:23 UTC|newest]

Thread overview: 45+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2023-05-04 13:42 [make-initrd] [PATCH 0/3] " Alexey Gladkov
2023-05-04 13:42 ` [make-initrd] [PATCH 1/3] " Alexey Gladkov
2023-05-05  3:08   ` Leonid Krivoshein
2023-05-05 17:02     ` Alexey Gladkov
2023-05-05  4:03   ` Leonid Krivoshein
2023-05-05 17:16     ` Alexey Gladkov
2023-05-05  5:21   ` Leonid Krivoshein
2023-05-05 17:24     ` Alexey Gladkov
2023-05-14 20:12   ` Leonid Krivoshein
2023-05-14 20:45     ` Alexey Gladkov
2023-05-14 20:57   ` Leonid Krivoshein
2023-05-15  8:52     ` Alexey Gladkov
2023-05-14 23:08   ` Leonid Krivoshein
2023-05-15  9:05     ` Alexey Gladkov
2023-05-15  0:47   ` Leonid Krivoshein
2023-05-15  9:12     ` Alexey Gladkov
2023-05-15  4:38   ` Leonid Krivoshein
2023-05-15 10:43     ` Alexey Gladkov
2023-05-18  6:39         ` Leonid Krivoshein
2023-05-18  7:05           ` Alexey Gladkov
2023-05-20  9:00   ` Leonid Krivoshein
2023-05-20 13:18     ` Alexey Gladkov
2023-05-20 15:17       ` Vladimir D. Seleznev
2023-05-20 17:23       ` Leonid Krivoshein [this message]
2023-05-20 18:51         ` Alexey Gladkov
2023-05-21  8:53         ` [make-initrd] [PATCH] ueventd: Don't use a epoll timeout when it's not needed Alexey Gladkov
2023-05-22  4:46           ` Leonid Krivoshein
2023-05-22  7:54             ` Alexey Gladkov
2023-05-22  9:19               ` Alexey Gladkov
2023-05-22  7:57             ` [make-initrd] [PATCH 1/2] ueventd: Fix memory leak Alexey Gladkov
2023-05-22  7:57             ` [make-initrd] [PATCH 2/2] ueventd: Change interface rd_asprintf_or_die Alexey Gladkov
2023-05-22  9:36               ` [make-initrd] [PATCH v2] " Alexey Gladkov
2023-05-20 16:37     ` [make-initrd] [PATCH 1/3] ueventd: Simplify call of the queue handler Alexey Gladkov
2023-05-20 16:37     ` [make-initrd] [PATCH 2/3] ueventd: Rename fd_list to fd_handler_list Alexey Gladkov
2023-05-20 16:37     ` [make-initrd] [PATCH 3/3] ueventd: Drop obsolete declarations Alexey Gladkov
2023-05-04 13:42 ` [make-initrd] [PATCH 2/3] Replace polld by uevent queue Alexey Gladkov
2023-05-04 13:42 ` [make-initrd] [PATCH 3/3] feature/kickstart: Reset rootdelay timer after kickstart Alexey Gladkov
2023-05-06 19:45 ` [make-initrd] ueventd: Add a prefix to the logging functions to avoid name collisions Alexey Gladkov
2023-05-06 19:45 ` [make-initrd] ueventd: Allow to configure the log destination Alexey Gladkov
2023-05-06 19:45 ` [make-initrd] ueventd: Pass the program name when initializing the logger Alexey Gladkov
2023-05-06 19:45 ` [make-initrd] ueventd: Rewrite logging function to make it more atomic Alexey Gladkov
2023-05-07 12:48 ` [make-initrd] [PATCH 0/3] Reimplement ueventd Alexey Gladkov
2023-05-13 11:50 ` Alexey Gladkov
2023-05-14 20:15   ` Leonid Krivoshein
2023-05-14 20:49     ` Alexey Gladkov

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=5522f0c1-adac-3db7-e569-05cda6d05d58@gmail.com \
    --to=klark.devel@gmail.com \
    --cc=make-initrd@lists.altlinux.org \
    /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

Make-initrd development discussion

This inbox may be cloned and mirrored by anyone:

	git clone --mirror http://lore.altlinux.org/make-initrd/0 make-initrd/git/0.git

	# If you have public-inbox 1.1+ installed, you may
	# initialize and index your mirror using the following commands:
	public-inbox-init -V2 make-initrd make-initrd/ http://lore.altlinux.org/make-initrd \
		make-initrd@lists.altlinux.org make-initrd@lists.altlinux.ru make-initrd@lists.altlinux.com
	public-inbox-index make-initrd

Example config snippet for mirrors.
Newsgroup available over NNTP:
	nntp://lore.altlinux.org/org.altlinux.lists.make-initrd


AGPL code for this site: git clone https://public-inbox.org/public-inbox.git