Displaying 3 results from an estimated 3 matches for "error_close".
Did you mean:
_error_close
2012 Nov 14
0
fs/btrfs/volumes.c:1505:1: warning: label 'error_close' defined but not used
...1edd318d
commit: 7017ac470ed5b029bc683883714a7f4a4ed34c33 Btrfs: move some common code into a subfunction
date: 2 days ago
config: make ARCH=x86_64 allyesconfig
All warnings:
fs/btrfs/volumes.c: In function ''btrfs_rm_device'':
fs/btrfs/volumes.c:1505:1: warning: label ''error_close'' defined but not used [-Wunused-label]
vim +1505 +/error_close fs/btrfs/volumes.c
2b82032c Yan Zheng 2008-11-17 1489 * at this point, the device is zero sized. We want to
2b82032c Yan Zheng 2008-11-17 1490 * remove it from the devices list and zero out the old super
2b...
2003 May 22
0
[PATCH 2.5.69 3/3] Bandaids for gen_init_cpio and initramfs
...et... */
-void cpio_mkfile(const char *filename, const char *location,
+static void cpio_mkfile(const char *filename, const char *location,
unsigned int mode, uid_t uid, gid_t gid)
{
char s[256];
@@ -201,7 +201,7 @@
free(filebuf);
push_pad();
return;
-
+
error_free:
free(filebuf);
error_close:
@@ -212,9 +212,29 @@
int main (int argc, char *argv[])
{
+ struct stat st;
+ char *objdir;
+ char *kinit;
+
+ if (argc != 2) {
+ fprintf(stderr, "usage: %s objdir\n", argv[0]);
+ exit(1);
+ }
+
+ objdir = argv[1];
+
cpio_mkdir("/dev", 0700, 0, 0);
cpio_mknod("/de...
2011 Aug 23
40
[PATCH 00/21] [RFC] Btrfs: restriper
Hello,
This patch series adds an initial implementation of restriper (it''s a
clever name for relocation framework that allows to do selective profile
changing and selective balancing with some goodies like pausing/resuming
and reporting progress to the user.
Profile changing is global (per-FS) so far, per-subvolume profiles
require some discussion and can be implemented in future.