All of lore.kernel.org
 help / color / mirror / Atom feed
From: Jaegeuk Kim <jaegeuk@kernel.org>
To: Robin Hsu <robinh3123@gmail.com>
Cc: linux-kernel@vger.kernel.org, linux-f2fs-devel@lists.sourceforge.net
Subject: Re: [f2fs-dev] [PATCH v2 3/3] f2fs-tools:sload.f2fs compress: Fixed automake
Date: Mon, 7 Dec 2020 08:23:33 -0800	[thread overview]
Message-ID: <X85XBTIuQghbh7Cw@google.com> (raw)
In-Reply-To: <20201207064250.272240-4-robinh3123@gmail.com>

On 12/07, Robin Hsu wrote:
> From: Robin Hsu <robinhsu@google.com>
> 
> Fixed automake for sload.f2fs compression support
> 
> ./configure now will by default depends on liblzo2 and liblz4.
> 
> To compile without liblzo2 (and thus not support liblzo2 compression),
> run ./configure with '--without-lzo2' option.
> 
> To compile without liblz4 (and thus not support liblz4 compression),
> run ./configure with '--without-lz4' option.
> 
> Test: Build with automake OK on glinux
> Bug: 170918502
> Signed-off-by: Robin Hsu <robinhsu@google.com>
> Change-Id: I25d339e4cab4ca196781da89fc3df3e13f869234
> ---
>  configure.ac     | 32 ++++++++++++++++++++++++++++++++
>  fsck/Makefile.am |  9 ++++++---
>  2 files changed, 38 insertions(+), 3 deletions(-)
> 
> diff --git a/configure.ac b/configure.ac
> index 1e5619d..3a357b2 100644
> --- a/configure.ac
> +++ b/configure.ac
> @@ -44,6 +44,14 @@ AC_ARG_WITH([blkid],
>  	AS_HELP_STRING([--without-blkid],
>  	  [Ignore presence of libblkid and disable blkid support]))
>  
> +AC_ARG_WITH([lzo2],
> +	AS_HELP_STRING([--without-lzo2],
> +	  [Ignore liblzo ver.2 for sload (not supporting lzo compression)]))
> +
> +AC_ARG_WITH([lz4],
> +	AS_HELP_STRING([--without-lz4],
> +	  [Ignore liblz4 for sload (not supporting lz4 compression)]))
> +
>  # Checks for programs.
>  AC_PROG_CC
>  AC_PROG_LIBTOOL
> @@ -52,6 +60,30 @@ AC_PATH_PROG([LDCONFIG], [ldconfig],
>         [$PATH:/sbin])
>  
>  # Checks for libraries.
> +AS_IF([test "x$with_lzo2" != xno],
> +            [AC_CHECK_LIB([lzo2], [main],
> +              [AC_SUBST([liblzo2_LIBS], ["-llzo2"])
> +               AC_DEFINE([HAVE_LIBLZO2], [1],
> +                         [Define if you have liblzo2])
> +              ],
> +              [if test "x$with_lzo2" != xcheck; then
> +                 AC_MSG_FAILURE(
> +                   [--with-lzo2 was given (or by default), but test for liblzo2 failed])
> +               fi
> +              ], [])])
> +
> +AS_IF([test "x$with_lz4" != xno],
> +            [AC_CHECK_LIB([lz4], [main],
> +              [AC_SUBST([liblz4_LIBS], ["-llz4"])
> +               AC_DEFINE([HAVE_LIBLZ4], [1],
> +                         [Define if you have liblz4])
> +              ],
> +              [if test "x$with_lz4" != xcheck; then
> +                 AC_MSG_FAILURE(
> +                   [--with-lz4 was given (or by default), but test for liblz4 failed])
> +               fi
> +              ], [])])
> +

Please don't bother users to be aware of libraries only for sload.f2fs using
compression.

>  PKG_CHECK_MODULES([libuuid], [uuid])
>  
>  AS_IF([test "x$with_selinux" != "xno"],
> diff --git a/fsck/Makefile.am b/fsck/Makefile.am
> index 1fc7310..74bc4b8 100644
> --- a/fsck/Makefile.am
> +++ b/fsck/Makefile.am
> @@ -3,12 +3,15 @@
>  AM_CPPFLAGS = ${libuuid_CFLAGS} -I$(top_srcdir)/include
>  AM_CFLAGS = -Wall
>  sbin_PROGRAMS = fsck.f2fs
> -noinst_HEADERS = common.h dict.h dqblk_v2.h f2fs.h fsck.h node.h quotaio.h quotaio_tree.h quotaio_v2.h xattr.h
> +noinst_HEADERS = common.h dict.h dqblk_v2.h f2fs.h fsck.h node.h quotaio.h \
> +		quotaio_tree.h quotaio_v2.h xattr.h compress_wrapper.h
>  include_HEADERS = $(top_srcdir)/include/quota.h
>  fsck_f2fs_SOURCES = main.c fsck.c dump.c mount.c defrag.c resize.c \
> -		node.c segment.c dir.c sload.c xattr.c \
> +		node.c segment.c dir.c sload.c xattr.c compress_wrapper.c \
>  		dict.c mkquota.c quotaio.c quotaio_tree.c quotaio_v2.c
> -fsck_f2fs_LDADD = ${libselinux_LIBS} ${libuuid_LIBS} $(top_builddir)/lib/libf2fs.la
> +fsck_f2fs_LDADD = ${libselinux_LIBS} ${libuuid_LIBS} \
> +	${liblzo2_LIBS} ${liblz4_LIBS} \
> +	$(top_builddir)/lib/libf2fs.la
>  
>  install-data-hook:
>  	ln -sf fsck.f2fs $(DESTDIR)/$(sbindir)/dump.f2fs
> -- 
> 2.29.2.576.ga3fc446d84-goog


_______________________________________________
Linux-f2fs-devel mailing list
Linux-f2fs-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/linux-f2fs-devel

WARNING: multiple messages have this Message-ID (diff)
From: Jaegeuk Kim <jaegeuk@kernel.org>
To: Robin Hsu <robinh3123@gmail.com>
Cc: linux-f2fs-devel@lists.sourceforge.net, chao@kernel.org,
	linux-kernel@vger.kernel.org, Robin Hsu <robinhsu@google.com>
Subject: Re: [PATCH v2 3/3] f2fs-tools:sload.f2fs compress: Fixed automake
Date: Mon, 7 Dec 2020 08:23:33 -0800	[thread overview]
Message-ID: <X85XBTIuQghbh7Cw@google.com> (raw)
In-Reply-To: <20201207064250.272240-4-robinh3123@gmail.com>

On 12/07, Robin Hsu wrote:
> From: Robin Hsu <robinhsu@google.com>
> 
> Fixed automake for sload.f2fs compression support
> 
> ./configure now will by default depends on liblzo2 and liblz4.
> 
> To compile without liblzo2 (and thus not support liblzo2 compression),
> run ./configure with '--without-lzo2' option.
> 
> To compile without liblz4 (and thus not support liblz4 compression),
> run ./configure with '--without-lz4' option.
> 
> Test: Build with automake OK on glinux
> Bug: 170918502
> Signed-off-by: Robin Hsu <robinhsu@google.com>
> Change-Id: I25d339e4cab4ca196781da89fc3df3e13f869234
> ---
>  configure.ac     | 32 ++++++++++++++++++++++++++++++++
>  fsck/Makefile.am |  9 ++++++---
>  2 files changed, 38 insertions(+), 3 deletions(-)
> 
> diff --git a/configure.ac b/configure.ac
> index 1e5619d..3a357b2 100644
> --- a/configure.ac
> +++ b/configure.ac
> @@ -44,6 +44,14 @@ AC_ARG_WITH([blkid],
>  	AS_HELP_STRING([--without-blkid],
>  	  [Ignore presence of libblkid and disable blkid support]))
>  
> +AC_ARG_WITH([lzo2],
> +	AS_HELP_STRING([--without-lzo2],
> +	  [Ignore liblzo ver.2 for sload (not supporting lzo compression)]))
> +
> +AC_ARG_WITH([lz4],
> +	AS_HELP_STRING([--without-lz4],
> +	  [Ignore liblz4 for sload (not supporting lz4 compression)]))
> +
>  # Checks for programs.
>  AC_PROG_CC
>  AC_PROG_LIBTOOL
> @@ -52,6 +60,30 @@ AC_PATH_PROG([LDCONFIG], [ldconfig],
>         [$PATH:/sbin])
>  
>  # Checks for libraries.
> +AS_IF([test "x$with_lzo2" != xno],
> +            [AC_CHECK_LIB([lzo2], [main],
> +              [AC_SUBST([liblzo2_LIBS], ["-llzo2"])
> +               AC_DEFINE([HAVE_LIBLZO2], [1],
> +                         [Define if you have liblzo2])
> +              ],
> +              [if test "x$with_lzo2" != xcheck; then
> +                 AC_MSG_FAILURE(
> +                   [--with-lzo2 was given (or by default), but test for liblzo2 failed])
> +               fi
> +              ], [])])
> +
> +AS_IF([test "x$with_lz4" != xno],
> +            [AC_CHECK_LIB([lz4], [main],
> +              [AC_SUBST([liblz4_LIBS], ["-llz4"])
> +               AC_DEFINE([HAVE_LIBLZ4], [1],
> +                         [Define if you have liblz4])
> +              ],
> +              [if test "x$with_lz4" != xcheck; then
> +                 AC_MSG_FAILURE(
> +                   [--with-lz4 was given (or by default), but test for liblz4 failed])
> +               fi
> +              ], [])])
> +

Please don't bother users to be aware of libraries only for sload.f2fs using
compression.

>  PKG_CHECK_MODULES([libuuid], [uuid])
>  
>  AS_IF([test "x$with_selinux" != "xno"],
> diff --git a/fsck/Makefile.am b/fsck/Makefile.am
> index 1fc7310..74bc4b8 100644
> --- a/fsck/Makefile.am
> +++ b/fsck/Makefile.am
> @@ -3,12 +3,15 @@
>  AM_CPPFLAGS = ${libuuid_CFLAGS} -I$(top_srcdir)/include
>  AM_CFLAGS = -Wall
>  sbin_PROGRAMS = fsck.f2fs
> -noinst_HEADERS = common.h dict.h dqblk_v2.h f2fs.h fsck.h node.h quotaio.h quotaio_tree.h quotaio_v2.h xattr.h
> +noinst_HEADERS = common.h dict.h dqblk_v2.h f2fs.h fsck.h node.h quotaio.h \
> +		quotaio_tree.h quotaio_v2.h xattr.h compress_wrapper.h
>  include_HEADERS = $(top_srcdir)/include/quota.h
>  fsck_f2fs_SOURCES = main.c fsck.c dump.c mount.c defrag.c resize.c \
> -		node.c segment.c dir.c sload.c xattr.c \
> +		node.c segment.c dir.c sload.c xattr.c compress_wrapper.c \
>  		dict.c mkquota.c quotaio.c quotaio_tree.c quotaio_v2.c
> -fsck_f2fs_LDADD = ${libselinux_LIBS} ${libuuid_LIBS} $(top_builddir)/lib/libf2fs.la
> +fsck_f2fs_LDADD = ${libselinux_LIBS} ${libuuid_LIBS} \
> +	${liblzo2_LIBS} ${liblz4_LIBS} \
> +	$(top_builddir)/lib/libf2fs.la
>  
>  install-data-hook:
>  	ln -sf fsck.f2fs $(DESTDIR)/$(sbindir)/dump.f2fs
> -- 
> 2.29.2.576.ga3fc446d84-goog

  reply	other threads:[~2020-12-07 16:23 UTC|newest]

Thread overview: 10+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2020-12-07  6:42 [f2fs-dev] [PATCH v2 0/3] f2fs-tools: sload compression support Robin Hsu
2020-12-07  6:42 ` Robin Hsu
2020-12-07  6:42 ` [f2fs-dev] [PATCH v2 1/3] f2fs-tools: Added #ifdef WITH_func Robin Hsu
2020-12-07  6:42   ` Robin Hsu
2020-12-07  6:42 ` [f2fs-dev] [PATCH v2 2/3] f2fs-tools:sload.f2fs compression support Robin Hsu
2020-12-07  6:42   ` Robin Hsu
2020-12-07  6:42 ` [f2fs-dev] [PATCH v2 3/3] f2fs-tools:sload.f2fs compress: Fixed automake Robin Hsu
2020-12-07  6:42   ` Robin Hsu
2020-12-07 16:23   ` Jaegeuk Kim [this message]
2020-12-07 16:23     ` Jaegeuk Kim

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=X85XBTIuQghbh7Cw@google.com \
    --to=jaegeuk@kernel.org \
    --cc=linux-f2fs-devel@lists.sourceforge.net \
    --cc=linux-kernel@vger.kernel.org \
    --cc=robinh3123@gmail.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.