From: agk@sourceware.org <agk@sourceware.org>
To: lvm-devel@redhat.com
Subject: LVM2/libdm libdm-common.c
Date: 3 Aug 2009 11:01:27 -0000 [thread overview]
Message-ID: <20090803110127.31230.qmail@sourceware.org> (raw)
CVSROOT: /cvs/lvm2
Module name: LVM2
Changes by: agk at sourceware.org 2009-08-03 11:01:26
Modified files:
libdm : libdm-common.c
Log message:
deal with error-related FIXMEs
Patches:
http://sourceware.org/cgi-bin/cvsweb.cgi/LVM2/libdm/libdm-common.c.diff?cvsroot=lvm2&r1=1.69&r2=1.70
--- LVM2/libdm/libdm-common.c 2009/07/31 17:51:46 1.69
+++ LVM2/libdm/libdm-common.c 2009/08/03 11:01:26 1.70
@@ -818,7 +818,13 @@
static int _get_cookie_sem(uint32_t cookie, int *semid)
{
- /* FIXME Ensure cookie has COOKIE_MAGIC prefix */
+ if (!(cookie >> 16 & COOKIE_MAGIC)) {
+ log_error("Could not continue to access notification "
+ "semaphore identified by cookie value %"
+ PRIu32 " (0x%x). Incorrect cookie prefix.");
+ return 0;
+ }
+
if ((*semid = semget((key_t) cookie, 1, 0)) >= 0)
return 1;
@@ -836,11 +842,10 @@
cookie, cookie);
break;
default:
- /* FIXME errno use missing */
log_error("Failed to access notification "
"semaphore identified by cookie "
- "value %" PRIu32 " (0x%x)",
- cookie, cookie);
+ "value %" PRIu32 " (0x%x): %s",
+ cookie, cookie, strerror(errno));
break;
}
@@ -851,26 +856,42 @@
{
struct sembuf sb = {0, 1, 0};
- /* FIXME errno use missing */
- return semop(semid, &sb, 1) == 0;
+ if (semop(semid, &sb, 1) < 0) {
+ log_error("semid %d: semop failed: %s", semid, strerror(errno));
+ return 0;
+ }
+
+ return 1;
}
static int _udev_notify_sem_dec(int semid)
{
- /* FIXME Think we should have IPC_NOWAIT here in case something went wrong and it's already 0 */
- struct sembuf sb = {0, -1, 0};
+ struct sembuf sb = {0, -1, IPC_NOWAIT};
+
+ if (semop(semid, &sb, 1) < 0) {
+ switch (errno) {
+ case EAGAIN:
+ log_error("semid %d: semop failed: "
+ "incorrect semaphore state",
+ semid);
+ break;
+ default:
+ log_error("semid %d: semop failed: %s",
+ semid, strerror(errno));
+ break;
+ }
+ return 0;
+ }
- /* FIXME errno use missing */
- return semop(semid, &sb, 1) == 0;
+ return 1;
}
static int _udev_notify_sem_destroy(int semid, uint32_t cookie)
{
- /* FIXME errno use missing */
if (semctl(semid, 0, IPC_RMID, 0) < 0) {
log_error("Could not cleanup notification semaphore "
- "identified by cookie value %" PRIu32 " (0x%x)",
- cookie, cookie);
+ "identified by cookie value %" PRIu32 " (0x%x): %s",
+ cookie, cookie, strerror(errno));
return 0;
}
@@ -914,22 +935,21 @@
"notification semaphore");
goto bad;
case ENOSPC:
- /* FIXME Suggest what to check & do */
log_error("Limit for the maximum number "
- "of semaphores reached");
+ "of semaphores reached. You can "
+ "check and set the limits in "
+ "/proc/sys/kernel/sem.");
goto bad;
default:
- /* FIXME Use errno */
- log_error("Failed to create "
- "notification semaphore");
+ log_error("Failed to create notification "
+ "semaphore: %s", strerror(errno));
goto bad;
}
}
} while (!base_cookie);
if (semctl(gen_semid, 0, SETVAL, 1) < 0) {
- /* FIXME Use errno and give gen_semid */
- log_error("Failed to initialize notification semaphore");
+ log_error("semid %d: semctl failed: %s", gen_semid, strerror(errno));
/* We have to destroy just created semaphore
* so it won't stay in the system. */
_udev_notify_sem_destroy(gen_semid, gen_cookie);
@@ -1027,10 +1047,9 @@
if (semop(semid, &sb, 1) < 0) {
if (errno == EINTR)
goto repeat_wait;
- /* FIXME missing errno use */
log_error("Could not set wait state for notification semaphore "
- "identified by cookie value %" PRIu32 " (0x%x)",
- cookie, cookie);
+ "identified by cookie value %" PRIu32 " (0x%x): %s",
+ cookie, cookie, strerror(errno));
_udev_notify_sem_destroy(semid, cookie);
return 0;
}
next reply other threads:[~2009-08-03 11:01 UTC|newest]
Thread overview: 21+ messages / expand[flat|nested] mbox.gz Atom feed top
2009-08-03 11:01 agk [this message]
-- strict thread matches above, loose matches on Subject: below --
2012-02-13 14:39 LVM2/libdm libdm-common.c zkabelac
2012-01-25 21:47 zkabelac
2011-09-24 11:47 prajnoha
2011-07-08 15:34 agk
2011-07-05 16:17 agk
2011-06-28 9:24 agk
2011-03-02 8:40 zkabelac
2010-12-13 12:44 prajnoha
2010-12-13 12:30 prajnoha
2010-12-13 12:18 prajnoha
2010-11-29 10:11 zkabelac
2009-09-25 19:06 agk
2009-09-25 18:19 agk
2009-09-25 18:13 agk
2009-09-11 16:11 prajnoha
2009-09-11 15:57 prajnoha
2009-08-06 15:00 prajnoha
2009-08-05 19:50 agk
2009-08-03 18:33 agk
2009-07-31 16:57 agk
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=20090803110127.31230.qmail@sourceware.org \
--to=agk@sourceware.org \
--cc=lvm-devel@redhat.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.