Displaying 3 results from an estimated 3 matches for "check_dir".
1999 Oct 08
1
Check script (PR#292)
There is a syntax error in the "check" script in R 0.65.1, due to an
unescaped ` character. Line 96 should read
    echo " Results of \`check' are available in directory ../${CHECK_DIR}"
not
    echo " Results of `check' are available in directory ../${CHECK_DIR}"
Martyn
--please do not edit the information below--
Version:
 platform = i686-unknown-linux
 arch = i686
 os = linux
 system = i686, linux
 status = Release
 major = 0
 minor = 65.1
 year = 1999...
2010 Dec 15
3
Google Picasa / GNOME / how to launch application?
I had installed Picasa,apparently properly, but am unable to launch
the application. In the GNOME Desktop menu, Applications > Graphics >
Picasa > Picasa it does not launch. Reinstalled it and the same issue.
Reinstalling:
 picasa           i386           2.7.3736-15             google
It is installed in /opt/picasa
Box is CentOS 5.5 (32 bit) fully updated.
How can I get this app to
2012 Oct 04
3
[PATCH] btrfs ulist use rbtree instead
....c
@@ -2898,7 +2898,7 @@ verbose_printk("btrfs: process_recorded_refs %llu\n", sctx->cur_ino);
 	 * deletion and if it''s finally possible to perform the rmdir now.
 	 * We also update the inode stats of the parent dirs here.
 	 */
-	ULIST_ITER_INIT(&uit);
+	ULIST_ITER_INIT(check_dirs, &uit);
 	while ((un = ulist_next(check_dirs, &uit))) {
 		if (un->val > sctx->cur_ino)
 			continue;
diff --git a/fs/btrfs/ulist.c b/fs/btrfs/ulist.c
index ab942f4..2040905 100644
--- a/fs/btrfs/ulist.c
+++ b/fs/btrfs/ulist.c
@@ -2,6 +2,8 @@
  * Copyright (C) 2011 STRATO AG
  * w...