Skip to content

Commit

Permalink
Revert "DVR inotify: fix fundamental error when inotify filename is r…
Browse files Browse the repository at this point in the history
…e-registered"

This reverts commit f55871b.
  • Loading branch information
perexg committed Dec 16, 2015
1 parent d6f0086 commit 0499859
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 25 deletions.
1 change: 0 additions & 1 deletion src/dvr/dvr.h
Original file line number Diff line number Diff line change
Expand Up @@ -645,7 +645,6 @@ void dvr_inotify_init ( void );
void dvr_inotify_done ( void );
void dvr_inotify_add ( dvr_entry_t *de );
void dvr_inotify_del ( dvr_entry_t *de );
int dvr_inotify_count( void );

/**
* Cutpoints support
Expand Down
29 changes: 5 additions & 24 deletions src/dvr/dvr_inotify.c
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,6 @@ static int _str_cmp ( void *a, void *b )
return strcmp(((dvr_inotify_entry_t*)a)->path, ((dvr_inotify_entry_t*)b)->path);
}


/**
* Initialise threads
*/
Expand Down Expand Up @@ -107,16 +106,13 @@ void dvr_inotify_add ( dvr_entry_t *de )
dvr_inotify_entry_skel->path = dirname(path);

e = RB_INSERT_SORTED(&_inot_tree, dvr_inotify_entry_skel, link, _str_cmp);
if (e) {
free(path);
return;
if (!e) {
e = dvr_inotify_entry_skel;
SKEL_USED(dvr_inotify_entry_skel);
e->path = strdup(e->path);
e->fd = inotify_add_watch(_inot_fd, e->path, EVENT_MASK);
}

e = dvr_inotify_entry_skel;
SKEL_USED(dvr_inotify_entry_skel);
e->path = strdup(e->path);
e->fd = inotify_add_watch(_inot_fd, e->path, EVENT_MASK);

LIST_INSERT_HEAD(&e->entries, de, de_inotify_link);

if (e->fd < 0) {
Expand Down Expand Up @@ -154,21 +150,6 @@ void dvr_inotify_del ( dvr_entry_t *de )
}
}

/*
* return count of registered entries (for debugging)
*/
int dvr_inotify_count ( void )
{
dvr_entry_t *det = NULL;
dvr_inotify_entry_t *e;
int count = 0;
lock_assert(&global_lock);
RB_FOREACH(e, &_inot_tree, link)
LIST_FOREACH(det, &e->entries, de_inotify_link)
count++;
return count;
}

/*
* Find inotify entry
*/
Expand Down

0 comments on commit 0499859

Please sign in to comment.