From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from syrinx.knorrie.org ([82.94.188.77]:41084 "EHLO syrinx.knorrie.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1753381AbdBCO1U (ORCPT ); Fri, 3 Feb 2017 09:27:20 -0500 Subject: Re: Btrfs Heatmap - v4 ... colors!! To: Timofey Titovets References: <33090601-0b56-7360-a256-aa5c27339d99@mendix.com> <20170118003838.GA4136@comcast.net> <48c8c404-9490-49b0-9eaf-c16621ff45c8@mendix.com> Cc: Tim Walberg , linux-btrfs From: Hans van Kranenburg Message-ID: <160ddbc9-fb38-56e6-cffe-650f9eb5c535@mendix.com> Date: Fri, 3 Feb 2017 15:27:12 +0100 MIME-Version: 1.0 In-Reply-To: Content-Type: text/plain; charset=utf-8 Sender: linux-btrfs-owner@vger.kernel.org List-ID: On 02/03/2017 03:18 PM, Timofey Titovets wrote: > 2017-02-03 15:57 GMT+03:00 Hans van Kranenburg : >> On 02/03/2017 12:25 PM, Timofey Titovets wrote: >>> Thank you for your great work: >>> JFYI Packaged in AUR: >>> https://aur.archlinux.org/packages/python-btrfs-heatmap/ >> >> Hey, thanks. >> >> Just wondering... what is that btrfs.py you refer to in... >> https://aur.archlinux.org/cgit/aur.git/tree/PKGBUILD?h=python-btrfs ? >> >> It's a package, not a single file, so maybe that compile command doesn't >> do anything? I'm not familiar with arch, so correct me if I'm wrong. >> >> . >> ├── btrfs >> │ ├── crc32c.py >> │ ├── ctree.py >> │ ├── __init__.py >> │ ├── ioctl.py >> │ ├── utils.py >> > > You right, compile command are useless, so i did remove it, thanks. -$ python2 -m compileall btrfs Listing btrfs ... Compiling btrfs/__init__.py ... Compiling btrfs/crc32c.py ... Compiling btrfs/ctree.py ... Compiling btrfs/ioctl.py ... Compiling btrfs/utils.py ... . ├── btrfs │ ├── crc32c.py │ ├── crc32c.pyc │ ├── ctree.py │ ├── ctree.pyc │ ├── __init__.py │ ├── __init__.pyc │ ├── ioctl.py │ ├── ioctl.pyc │ ├── utils.py │ └── utils.pyc -$ python3 -m compileall btrfs Listing 'btrfs'... Compiling 'btrfs/__init__.py'... Compiling 'btrfs/crc32c.py'... Compiling 'btrfs/ctree.py'... Compiling 'btrfs/ioctl.py'... Compiling 'btrfs/utils.py'... . ├── btrfs │ ├── crc32c.py │ ├── ctree.py │ ├── __init__.py │ ├── ioctl.py │ ├── __pycache__ │ │ ├── crc32c.cpython-35.pyc │ │ ├── ctree.cpython-35.pyc │ │ ├── __init__.cpython-35.pyc │ │ ├── ioctl.cpython-35.pyc │ │ └── utils.cpython-35.pyc │ └── utils.py -- Hans van Kranenburg