search for: do_mkswap_u

Displaying 5 results from an estimated 5 matches for "do_mkswap_u".

2015 Jun 24
0
[PATCH 4/5] uuid: use existed do_mkswap_U
...n/daemon.h b/daemon/daemon.h index aba6ef2..c887cfd 100644 --- a/daemon/daemon.h +++ b/daemon/daemon.h @@ -275,6 +275,9 @@ extern int btrfstune_set_uuid (const char *device, const char *uuid); /*-- in ntfs.c --*/ extern char *ntfs_get_label (const char *device); +/*-- in swap.c --*/ +extern int do_mkswap_U (const char *device, const char *uuid); + /* ordinary daemon functions use these to indicate errors * NB: you don't need to prefix the string with the current command, * it is added automatically by the client-side RPC stubs. diff --git a/daemon/uuids.c b/daemon/uuids.c index 0520113..7049...
2015 Jun 24
10
[PATCH 0/5] uuid: add btrfs uuid change support and some rework
...deplicated work for changing uuid of fs. Use existed functions. -- Introduce new API: btrfstune_set_uuid_random Chen Hanxiao (5): uuid: add support to change uuid of btrfs partition uuid: use existed function of ext2 uuid: use newly introduced do_xfs_admin_uuid of xfs uuid: use existed do_mkswap_U New API: btrfstune_set_uuid_random daemon/btrfs.c | 81 ++++++++++++++++++++++++++++++++++++++++++ daemon/daemon.h | 6 ++++ daemon/uuids.c | 44 +++++------------------ daemon/xfs.c | 7 ++++ generator/actions.ml | 18...
2017 Apr 19
0
[PATCH] daemon: Add an assertion to suppress a warning with GCC.
swap.c: In function 'do_mkswap_U': swap.c:62:9: error: argument 1 null where non-null expected [-Werror=nonnull] if (strlen (label) > SWAP_LABEL_MAX) { ^~~~~~~~~~~~~~ --- daemon/swap.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/daemon/swap.c b/daemon/swap.c index 028bc1ee2..fea4a9dcf 100644 --- a/d...
2009 Aug 12
23
[PATCH 0/23] factor and const-correctness
This started as a simple warning-elimination change. I'll get back to that series shortly ;-) It turned into a factorization and constification exercise during which I got a taste of ocaml. Thanks to Rich Jones for help with a few snippets in generator.ml. The overall result is that many previously-manually-maintained bits from daemon/*.c functions are now hoisted into the automatically-
2012 Feb 01
1
[PATCH] Clarify the error message when unavailable functions are called (RHBZ#679737).
...Copyright (C) 2009 Red Hat Inc. + * Copyright (C) 2009-2012 Red Hat Inc. * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by @@ -99,6 +99,8 @@ do_mkswap_L (const char *label, const char *device) int do_mkswap_U (const char *uuid, const char *device) { + IF_NOT_AVAILABLE_ERROR (linuxfsuuid, -1); + return mkswap (device, "-U", uuid); } @@ -219,11 +221,15 @@ do_swapoff_label (const char *label) int do_swapon_uuid (const char *uuid) { + IF_NOT_AVAILABLE_ERROR (linuxfsuuid, -1); + retu...