fixtures.ttar 258 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962596359645965596659675968596959705971597259735974597559765977597859795980598159825983598459855986598759885989599059915992599359945995599659975998599960006001600260036004600560066007600860096010601160126013601460156016601760186019602060216022602360246025602660276028602960306031603260336034603560366037603860396040604160426043604460456046604760486049605060516052605360546055605660576058605960606061606260636064606560666067606860696070607160726073607460756076607760786079608060816082608360846085608660876088608960906091609260936094609560966097609860996100610161026103610461056106610761086109611061116112611361146115611661176118611961206121612261236124612561266127612861296130613161326133613461356136613761386139614061416142614361446145614661476148614961506151615261536154615561566157615861596160616161626163616461656166616761686169617061716172617361746175617661776178617961806181618261836184618561866187618861896190619161926193619461956196619761986199620062016202620362046205620662076208620962106211621262136214621562166217621862196220622162226223622462256226622762286229623062316232623362346235623662376238623962406241624262436244624562466247624862496250625162526253625462556256625762586259626062616262626362646265626662676268626962706271627262736274627562766277627862796280628162826283628462856286628762886289629062916292629362946295629662976298629963006301630263036304630563066307630863096310631163126313631463156316631763186319632063216322632363246325632663276328632963306331633263336334633563366337633863396340634163426343634463456346634763486349635063516352635363546355635663576358635963606361636263636364636563666367636863696370637163726373637463756376637763786379638063816382638363846385638663876388638963906391639263936394639563966397639863996400640164026403640464056406640764086409641064116412641364146415641664176418641964206421642264236424642564266427642864296430643164326433643464356436643764386439644064416442644364446445644664476448644964506451645264536454645564566457645864596460646164626463646464656466646764686469647064716472647364746475647664776478647964806481648264836484648564866487648864896490649164926493649464956496649764986499650065016502650365046505650665076508650965106511651265136514651565166517651865196520652165226523652465256526652765286529653065316532653365346535653665376538653965406541654265436544654565466547654865496550655165526553
  1. # Archive created by ttar -c -f fixtures.ttar fixtures/
  2. Directory: fixtures
  3. Mode: 775
  4. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  5. Directory: fixtures/proc
  6. Mode: 775
  7. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  8. Directory: fixtures/proc/26231
  9. Mode: 755
  10. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  11. Path: fixtures/proc/26231/cmdline
  12. Lines: 1
  13. vimNULLBYTEtest.goNULLBYTE+10NULLBYTEEOF
  14. Mode: 644
  15. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  16. Path: fixtures/proc/26231/comm
  17. Lines: 1
  18. vim
  19. Mode: 644
  20. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  21. Path: fixtures/proc/26231/cwd
  22. SymlinkTo: /usr/bin
  23. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  24. Path: fixtures/proc/26231/environ
  25. Lines: 1
  26. PATH=/go/bin:/usr/local/go/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/binNULLBYTEHOSTNAME=cd24e11f73a5NULLBYTETERM=xtermNULLBYTEGOLANG_VERSION=1.12.5NULLBYTEGOPATH=/goNULLBYTEHOME=/rootNULLBYTEEOF
  27. Mode: 644
  28. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  29. Path: fixtures/proc/26231/exe
  30. SymlinkTo: /usr/bin/vim
  31. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  32. Directory: fixtures/proc/26231/fd
  33. Mode: 755
  34. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  35. Path: fixtures/proc/26231/fd/0
  36. SymlinkTo: ../../symlinktargets/abc
  37. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  38. Path: fixtures/proc/26231/fd/1
  39. SymlinkTo: ../../symlinktargets/def
  40. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  41. Path: fixtures/proc/26231/fd/10
  42. SymlinkTo: ../../symlinktargets/xyz
  43. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  44. Path: fixtures/proc/26231/fd/2
  45. SymlinkTo: ../../symlinktargets/ghi
  46. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  47. Path: fixtures/proc/26231/fd/3
  48. SymlinkTo: ../../symlinktargets/uvw
  49. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  50. Directory: fixtures/proc/26231/fdinfo
  51. Mode: 755
  52. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  53. Path: fixtures/proc/26231/fdinfo/0
  54. Lines: 6
  55. pos: 0
  56. flags: 02004000
  57. mnt_id: 13
  58. inotify wd:3 ino:1 sdev:34 mask:fce ignored_mask:0 fhandle-bytes:c fhandle-type:81 f_handle:000000000100000000000000
  59. inotify wd:2 ino:1300016 sdev:fd00002 mask:fce ignored_mask:0 fhandle-bytes:8 fhandle-type:1 f_handle:16003001ed3f022a
  60. inotify wd:1 ino:2e0001 sdev:fd00000 mask:fce ignored_mask:0 fhandle-bytes:8 fhandle-type:1 f_handle:01002e00138e7c65
  61. Mode: 644
  62. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  63. Path: fixtures/proc/26231/fdinfo/1
  64. Lines: 4
  65. pos: 0
  66. flags: 02004002
  67. mnt_id: 13
  68. eventfd-count: 0
  69. Mode: 644
  70. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  71. Path: fixtures/proc/26231/fdinfo/10
  72. Lines: 3
  73. pos: 0
  74. flags: 02004002
  75. mnt_id: 9
  76. Mode: 400
  77. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  78. Path: fixtures/proc/26231/fdinfo/2
  79. Lines: 3
  80. pos: 0
  81. flags: 02004002
  82. mnt_id: 9
  83. Mode: 400
  84. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  85. Path: fixtures/proc/26231/fdinfo/3
  86. Lines: 3
  87. pos: 0
  88. flags: 02004002
  89. mnt_id: 9
  90. Mode: 400
  91. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  92. Path: fixtures/proc/26231/io
  93. Lines: 7
  94. rchar: 750339
  95. wchar: 818609
  96. syscr: 7405
  97. syscw: 5245
  98. read_bytes: 1024
  99. write_bytes: 2048
  100. cancelled_write_bytes: -1024
  101. Mode: 644
  102. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  103. Path: fixtures/proc/26231/limits
  104. Lines: 17
  105. Limit Soft Limit Hard Limit Units
  106. Max cpu time unlimited unlimited seconds
  107. Max file size unlimited unlimited bytes
  108. Max data size unlimited unlimited bytes
  109. Max stack size 8388608 unlimited bytes
  110. Max core file size 0 unlimited bytes
  111. Max resident set unlimited unlimited bytes
  112. Max processes 62898 62898 processes
  113. Max open files 2048 4096 files
  114. Max locked memory 18446744073708503040 18446744073708503040 bytes
  115. Max address space 8589934592 unlimited bytes
  116. Max file locks unlimited unlimited locks
  117. Max pending signals 62898 62898 signals
  118. Max msgqueue size 819200 819200 bytes
  119. Max nice priority 0 0
  120. Max realtime priority 0 0
  121. Max realtime timeout unlimited unlimited us
  122. Mode: 644
  123. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  124. Path: fixtures/proc/26231/mountstats
  125. Lines: 20
  126. device rootfs mounted on / with fstype rootfs
  127. device sysfs mounted on /sys with fstype sysfs
  128. device proc mounted on /proc with fstype proc
  129. device /dev/sda1 mounted on / with fstype ext4
  130. device 192.168.1.1:/srv/test mounted on /mnt/nfs/test with fstype nfs4 statvers=1.1
  131. opts: rw,vers=4.0,rsize=1048576,wsize=1048576,namlen=255,acregmin=3,acregmax=60,acdirmin=30,acdirmax=60,hard,proto=tcp,port=0,timeo=600,retrans=2,sec=sys,mountaddr=192.168.1.1,clientaddr=192.168.1.5,local_lock=none
  132. age: 13968
  133. caps: caps=0xfff7,wtmult=512,dtsize=32768,bsize=0,namlen=255
  134. nfsv4: bm0=0xfdffafff,bm1=0xf9be3e,bm2=0x0,acl=0x0,pnfs=not configured
  135. sec: flavor=1,pseudoflavor=1
  136. events: 52 226 0 0 1 13 398 0 0 331 0 47 0 0 77 0 0 77 0 0 0 0 0 0 0 0 0
  137. bytes: 1207640230 0 0 0 1210214218 0 295483 0
  138. RPC iostats version: 1.0 p/v: 100003/4 (nfs)
  139. xprt: tcp 832 0 1 0 11 6428 6428 0 12154 0 24 26 5726
  140. per-op statistics
  141. NULL: 0 0 0 0 0 0 0 0
  142. READ: 1298 1298 0 207680 1210292152 6 79386 79407
  143. WRITE: 0 0 0 0 0 0 0 0
  144. ACCESS: 2927395007 2927394995 0 526931094212 362996810236 18446743919241604546 1667369447 1953587717
  145. Mode: 644
  146. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  147. Directory: fixtures/proc/26231/net
  148. Mode: 755
  149. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  150. Path: fixtures/proc/26231/net/dev
  151. Lines: 4
  152. Inter-| Receive | Transmit
  153. face |bytes packets errs drop fifo frame compressed multicast|bytes packets errs drop fifo colls carrier compressed
  154. lo: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
  155. eth0: 438 5 0 0 0 0 0 0 648 8 0 0 0 0 0 0
  156. Mode: 644
  157. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  158. Directory: fixtures/proc/26231/ns
  159. Mode: 755
  160. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  161. Path: fixtures/proc/26231/ns/mnt
  162. SymlinkTo: mnt:[4026531840]
  163. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  164. Path: fixtures/proc/26231/ns/net
  165. SymlinkTo: net:[4026531993]
  166. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  167. Path: fixtures/proc/26231/root
  168. SymlinkTo: /
  169. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  170. Path: fixtures/proc/26231/schedstat
  171. Lines: 1
  172. 411605849 93680043 79
  173. Mode: 644
  174. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  175. Path: fixtures/proc/26231/smaps
  176. Lines: 252
  177. 00400000-00cb1000 r-xp 00000000 fd:01 952273 /bin/alertmanager
  178. Size: 8900 kB
  179. KernelPageSize: 4 kB
  180. MMUPageSize: 4 kB
  181. Rss: 2952 kB
  182. Pss: 2952 kB
  183. Shared_Clean: 0 kB
  184. Shared_Dirty: 0 kB
  185. Private_Clean: 2952 kB
  186. Private_Dirty: 0 kB
  187. Referenced: 2864 kB
  188. Anonymous: 0 kB
  189. LazyFree: 0 kB
  190. AnonHugePages: 0 kB
  191. ShmemPmdMapped: 0 kB
  192. Shared_Hugetlb: 0 kB
  193. Private_Hugetlb: 0 kB
  194. Swap: 0 kB
  195. SwapPss: 0 kB
  196. Locked: 0 kB
  197. VmFlags: rd ex mr mw me dw sd
  198. 00cb1000-016b0000 r--p 008b1000 fd:01 952273 /bin/alertmanager
  199. Size: 10236 kB
  200. KernelPageSize: 4 kB
  201. MMUPageSize: 4 kB
  202. Rss: 6152 kB
  203. Pss: 6152 kB
  204. Shared_Clean: 0 kB
  205. Shared_Dirty: 0 kB
  206. Private_Clean: 6152 kB
  207. Private_Dirty: 0 kB
  208. Referenced: 5308 kB
  209. Anonymous: 0 kB
  210. LazyFree: 0 kB
  211. AnonHugePages: 0 kB
  212. ShmemPmdMapped: 0 kB
  213. Shared_Hugetlb: 0 kB
  214. Private_Hugetlb: 0 kB
  215. Swap: 0 kB
  216. SwapPss: 0 kB
  217. Locked: 0 kB
  218. VmFlags: rd mr mw me dw sd
  219. 016b0000-0171a000 rw-p 012b0000 fd:01 952273 /bin/alertmanager
  220. Size: 424 kB
  221. KernelPageSize: 4 kB
  222. MMUPageSize: 4 kB
  223. Rss: 176 kB
  224. Pss: 176 kB
  225. Shared_Clean: 0 kB
  226. Shared_Dirty: 0 kB
  227. Private_Clean: 84 kB
  228. Private_Dirty: 92 kB
  229. Referenced: 176 kB
  230. Anonymous: 92 kB
  231. LazyFree: 0 kB
  232. AnonHugePages: 0 kB
  233. ShmemPmdMapped: 0 kB
  234. Shared_Hugetlb: 0 kB
  235. Private_Hugetlb: 0 kB
  236. Swap: 12 kB
  237. SwapPss: 12 kB
  238. Locked: 0 kB
  239. VmFlags: rd wr mr mw me dw ac sd
  240. 0171a000-0173f000 rw-p 00000000 00:00 0
  241. Size: 148 kB
  242. KernelPageSize: 4 kB
  243. MMUPageSize: 4 kB
  244. Rss: 76 kB
  245. Pss: 76 kB
  246. Shared_Clean: 0 kB
  247. Shared_Dirty: 0 kB
  248. Private_Clean: 0 kB
  249. Private_Dirty: 76 kB
  250. Referenced: 76 kB
  251. Anonymous: 76 kB
  252. LazyFree: 0 kB
  253. AnonHugePages: 0 kB
  254. ShmemPmdMapped: 0 kB
  255. Shared_Hugetlb: 0 kB
  256. Private_Hugetlb: 0 kB
  257. Swap: 0 kB
  258. SwapPss: 0 kB
  259. Locked: 0 kB
  260. VmFlags: rd wr mr mw me ac sd
  261. c000000000-c000400000 rw-p 00000000 00:00 0
  262. Size: 4096 kB
  263. KernelPageSize: 4 kB
  264. MMUPageSize: 4 kB
  265. Rss: 2564 kB
  266. Pss: 2564 kB
  267. Shared_Clean: 0 kB
  268. Shared_Dirty: 0 kB
  269. Private_Clean: 20 kB
  270. Private_Dirty: 2544 kB
  271. Referenced: 2544 kB
  272. Anonymous: 2564 kB
  273. LazyFree: 0 kB
  274. AnonHugePages: 0 kB
  275. ShmemPmdMapped: 0 kB
  276. Shared_Hugetlb: 0 kB
  277. Private_Hugetlb: 0 kB
  278. Swap: 1100 kB
  279. SwapPss: 1100 kB
  280. Locked: 0 kB
  281. VmFlags: rd wr mr mw me ac sd
  282. c000400000-c001600000 rw-p 00000000 00:00 0
  283. Size: 18432 kB
  284. KernelPageSize: 4 kB
  285. MMUPageSize: 4 kB
  286. Rss: 16024 kB
  287. Pss: 16024 kB
  288. Shared_Clean: 0 kB
  289. Shared_Dirty: 0 kB
  290. Private_Clean: 5864 kB
  291. Private_Dirty: 10160 kB
  292. Referenced: 11944 kB
  293. Anonymous: 16024 kB
  294. LazyFree: 5848 kB
  295. AnonHugePages: 0 kB
  296. ShmemPmdMapped: 0 kB
  297. Shared_Hugetlb: 0 kB
  298. Private_Hugetlb: 0 kB
  299. Swap: 440 kB
  300. SwapPss: 440 kB
  301. Locked: 0 kB
  302. VmFlags: rd wr mr mw me ac sd nh
  303. c001600000-c004000000 rw-p 00000000 00:00 0
  304. Size: 43008 kB
  305. KernelPageSize: 4 kB
  306. MMUPageSize: 4 kB
  307. Rss: 0 kB
  308. Pss: 0 kB
  309. Shared_Clean: 0 kB
  310. Shared_Dirty: 0 kB
  311. Private_Clean: 0 kB
  312. Private_Dirty: 0 kB
  313. Referenced: 0 kB
  314. Anonymous: 0 kB
  315. LazyFree: 0 kB
  316. AnonHugePages: 0 kB
  317. ShmemPmdMapped: 0 kB
  318. Shared_Hugetlb: 0 kB
  319. Private_Hugetlb: 0 kB
  320. Swap: 0 kB
  321. SwapPss: 0 kB
  322. Locked: 0 kB
  323. VmFlags: rd wr mr mw me ac sd
  324. 7f0ab95ca000-7f0abbb7b000 rw-p 00000000 00:00 0
  325. Size: 38596 kB
  326. KernelPageSize: 4 kB
  327. MMUPageSize: 4 kB
  328. Rss: 1992 kB
  329. Pss: 1992 kB
  330. Shared_Clean: 0 kB
  331. Shared_Dirty: 0 kB
  332. Private_Clean: 476 kB
  333. Private_Dirty: 1516 kB
  334. Referenced: 1828 kB
  335. Anonymous: 1992 kB
  336. LazyFree: 0 kB
  337. AnonHugePages: 0 kB
  338. ShmemPmdMapped: 0 kB
  339. Shared_Hugetlb: 0 kB
  340. Private_Hugetlb: 0 kB
  341. Swap: 384 kB
  342. SwapPss: 384 kB
  343. Locked: 0 kB
  344. VmFlags: rd wr mr mw me ac sd
  345. 7ffc07ecf000-7ffc07ef0000 rw-p 00000000 00:00 0 [stack]
  346. Size: 132 kB
  347. KernelPageSize: 4 kB
  348. MMUPageSize: 4 kB
  349. Rss: 8 kB
  350. Pss: 8 kB
  351. Shared_Clean: 0 kB
  352. Shared_Dirty: 0 kB
  353. Private_Clean: 0 kB
  354. Private_Dirty: 8 kB
  355. Referenced: 8 kB
  356. Anonymous: 8 kB
  357. LazyFree: 0 kB
  358. AnonHugePages: 0 kB
  359. ShmemPmdMapped: 0 kB
  360. Shared_Hugetlb: 0 kB
  361. Private_Hugetlb: 0 kB
  362. Swap: 4 kB
  363. SwapPss: 4 kB
  364. Locked: 0 kB
  365. VmFlags: rd wr mr mw me gd ac
  366. 7ffc07f9e000-7ffc07fa1000 r--p 00000000 00:00 0 [vvar]
  367. Size: 12 kB
  368. KernelPageSize: 4 kB
  369. MMUPageSize: 4 kB
  370. Rss: 0 kB
  371. Pss: 0 kB
  372. Shared_Clean: 0 kB
  373. Shared_Dirty: 0 kB
  374. Private_Clean: 0 kB
  375. Private_Dirty: 0 kB
  376. Referenced: 0 kB
  377. Anonymous: 0 kB
  378. LazyFree: 0 kB
  379. AnonHugePages: 0 kB
  380. ShmemPmdMapped: 0 kB
  381. Shared_Hugetlb: 0 kB
  382. Private_Hugetlb: 0 kB
  383. Swap: 0 kB
  384. SwapPss: 0 kB
  385. Locked: 0 kB
  386. VmFlags: rd mr pf io de dd sd
  387. 7ffc07fa1000-7ffc07fa3000 r-xp 00000000 00:00 0 [vdso]
  388. Size: 8 kB
  389. KernelPageSize: 4 kB
  390. MMUPageSize: 4 kB
  391. Rss: 4 kB
  392. Pss: 0 kB
  393. Shared_Clean: 4 kB
  394. Shared_Dirty: 0 kB
  395. Private_Clean: 0 kB
  396. Private_Dirty: 0 kB
  397. Referenced: 4 kB
  398. Anonymous: 0 kB
  399. LazyFree: 0 kB
  400. AnonHugePages: 0 kB
  401. ShmemPmdMapped: 0 kB
  402. Shared_Hugetlb: 0 kB
  403. Private_Hugetlb: 0 kB
  404. Swap: 0 kB
  405. SwapPss: 0 kB
  406. Locked: 0 kB
  407. VmFlags: rd ex mr mw me de sd
  408. ffffffffff600000-ffffffffff601000 r-xp 00000000 00:00 0 [vsyscall]
  409. Size: 4 kB
  410. KernelPageSize: 4 kB
  411. MMUPageSize: 4 kB
  412. Rss: 0 kB
  413. Pss: 0 kB
  414. Shared_Clean: 0 kB
  415. Shared_Dirty: 0 kB
  416. Private_Clean: 0 kB
  417. Private_Dirty: 0 kB
  418. Referenced: 0 kB
  419. Anonymous: 0 kB
  420. LazyFree: 0 kB
  421. AnonHugePages: 0 kB
  422. ShmemPmdMapped: 0 kB
  423. Shared_Hugetlb: 0 kB
  424. Private_Hugetlb: 0 kB
  425. Swap: 0 kB
  426. SwapPss: 0 kB
  427. Locked: 0 kB
  428. VmFlags: rd ex
  429. Mode: 644
  430. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  431. Path: fixtures/proc/26231/smaps_rollup
  432. Lines: 17
  433. 00400000-ffffffffff601000 ---p 00000000 00:00 0 [rollup]
  434. Rss: 29948 kB
  435. Pss: 29944 kB
  436. Shared_Clean: 4 kB
  437. Shared_Dirty: 0 kB
  438. Private_Clean: 15548 kB
  439. Private_Dirty: 14396 kB
  440. Referenced: 24752 kB
  441. Anonymous: 20756 kB
  442. LazyFree: 5848 kB
  443. AnonHugePages: 0 kB
  444. ShmemPmdMapped: 0 kB
  445. Shared_Hugetlb: 0 kB
  446. Private_Hugetlb: 0 kB
  447. Swap: 1940 kB
  448. SwapPss: 1940 kB
  449. Locked: 0 kB
  450. Mode: 644
  451. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  452. Path: fixtures/proc/26231/stat
  453. Lines: 1
  454. 26231 (vim) R 5392 7446 5392 34835 7446 4218880 32533 309516 26 82 1677 44 158 99 20 0 1 0 82375 56274944 1981 18446744073709551615 4194304 6294284 140736914091744 140736914087944 139965136429984 0 0 12288 1870679807 0 0 0 17 0 0 0 31 0 0 8391624 8481048 16420864 140736914093252 140736914093279 140736914093279 140736914096107 0
  455. Mode: 644
  456. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  457. Path: fixtures/proc/26231/status
  458. Lines: 53
  459. Name: prometheus
  460. Umask: 0022
  461. State: S (sleeping)
  462. Tgid: 26231
  463. Ngid: 0
  464. Pid: 26231
  465. PPid: 1
  466. TracerPid: 0
  467. Uid: 1000 1000 1000 0
  468. Gid: 1001 1001 1001 0
  469. FDSize: 128
  470. Groups:
  471. NStgid: 1
  472. NSpid: 1
  473. NSpgid: 1
  474. NSsid: 1
  475. VmPeak: 58472 kB
  476. VmSize: 58440 kB
  477. VmLck: 0 kB
  478. VmPin: 0 kB
  479. VmHWM: 8028 kB
  480. VmRSS: 6716 kB
  481. RssAnon: 2092 kB
  482. RssFile: 4624 kB
  483. RssShmem: 0 kB
  484. VmData: 2580 kB
  485. VmStk: 136 kB
  486. VmExe: 948 kB
  487. VmLib: 6816 kB
  488. VmPTE: 128 kB
  489. VmPMD: 12 kB
  490. VmSwap: 660 kB
  491. HugetlbPages: 0 kB
  492. Threads: 1
  493. SigQ: 8/63965
  494. SigPnd: 0000000000000000
  495. ShdPnd: 0000000000000000
  496. SigBlk: 7be3c0fe28014a03
  497. SigIgn: 0000000000001000
  498. SigCgt: 00000001800004ec
  499. CapInh: 0000000000000000
  500. CapPrm: 0000003fffffffff
  501. CapEff: 0000003fffffffff
  502. CapBnd: 0000003fffffffff
  503. CapAmb: 0000000000000000
  504. Seccomp: 0
  505. Cpus_allowed: ff
  506. Cpus_allowed_list: 0-7
  507. Mems_allowed: 00000000,00000001
  508. Mems_allowed_list: 0
  509. voluntary_ctxt_switches: 4742839
  510. nonvoluntary_ctxt_switches: 1727500
  511. Mode: 644
  512. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  513. Path: fixtures/proc/26231/wchan
  514. Lines: 1
  515. poll_schedule_timeoutEOF
  516. Mode: 664
  517. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  518. Directory: fixtures/proc/26232
  519. Mode: 755
  520. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  521. Path: fixtures/proc/26232/cmdline
  522. Lines: 0
  523. Mode: 644
  524. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  525. Path: fixtures/proc/26232/comm
  526. Lines: 1
  527. ata_sff
  528. Mode: 644
  529. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  530. Path: fixtures/proc/26232/cwd
  531. SymlinkTo: /does/not/exist
  532. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  533. Directory: fixtures/proc/26232/fd
  534. Mode: 755
  535. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  536. Path: fixtures/proc/26232/fd/0
  537. SymlinkTo: ../../symlinktargets/abc
  538. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  539. Path: fixtures/proc/26232/fd/1
  540. SymlinkTo: ../../symlinktargets/def
  541. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  542. Path: fixtures/proc/26232/fd/2
  543. SymlinkTo: ../../symlinktargets/ghi
  544. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  545. Path: fixtures/proc/26232/fd/3
  546. SymlinkTo: ../../symlinktargets/uvw
  547. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  548. Path: fixtures/proc/26232/fd/4
  549. SymlinkTo: ../../symlinktargets/xyz
  550. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  551. Path: fixtures/proc/26232/limits
  552. Lines: 17
  553. Limit Soft Limit Hard Limit Units
  554. Max cpu time unlimited unlimited seconds
  555. Max file size unlimited unlimited bytes
  556. Max data size unlimited unlimited bytes
  557. Max stack size 8388608 unlimited bytes
  558. Max core file size 0 unlimited bytes
  559. Max resident set unlimited unlimited bytes
  560. Max processes 29436 29436 processes
  561. Max open files 1024 4096 files
  562. Max locked memory 65536 65536 bytes
  563. Max address space unlimited unlimited bytes
  564. Max file locks unlimited unlimited locks
  565. Max pending signals 29436 29436 signals
  566. Max msgqueue size 819200 819200 bytes
  567. Max nice priority 0 0
  568. Max realtime priority 0 0
  569. Max realtime timeout unlimited unlimited us
  570. Mode: 644
  571. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  572. Path: fixtures/proc/26232/maps
  573. Lines: 9
  574. 55680ae1e000-55680ae20000 r--p 00000000 fd:01 47316994 /bin/cat
  575. 55680ae29000-55680ae2a000 rwxs 0000a000 fd:01 47316994 /bin/cat
  576. 55680bed6000-55680bef7000 rw-p 00000000 00:00 0 [heap]
  577. 7fdf964fc000-7fdf973f2000 r--p 00000000 fd:01 17432624 /usr/lib/locale/locale-archive
  578. 7fdf973f2000-7fdf97417000 r--p 00000000 fd:01 60571062 /lib/x86_64-linux-gnu/libc-2.29.so
  579. 7ffe9215c000-7ffe9217f000 rw-p 00000000 00:00 0 [stack]
  580. 7ffe921da000-7ffe921dd000 r--p 00000000 00:00 0 [vvar]
  581. 7ffe921dd000-7ffe921de000 r-xp 00000000 00:00 0 [vdso]
  582. ffffffffff600000-ffffffffff601000 --xp 00000000 00:00 0 [vsyscall]
  583. Mode: 644
  584. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  585. Path: fixtures/proc/26232/root
  586. SymlinkTo: /does/not/exist
  587. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  588. Path: fixtures/proc/26232/stat
  589. Lines: 1
  590. 33 (ata_sff) S 2 0 0 0 -1 69238880 0 0 0 0 0 0 0 0 0 -20 1 0 5 0 0 18446744073709551615 0 0 0 0 0 0 0 2147483647 0 18446744073709551615 0 0 17 1 0 0 0 0 0 0 0 0 0 0 0 0 0
  591. Mode: 644
  592. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  593. Path: fixtures/proc/26232/wchan
  594. Lines: 1
  595. 0EOF
  596. Mode: 664
  597. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  598. Directory: fixtures/proc/26233
  599. Mode: 755
  600. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  601. Path: fixtures/proc/26233/cmdline
  602. Lines: 1
  603. com.github.uiautomatorNULLBYTENULLBYTENULLBYTENULLBYTENULLBYTENULLBYTENULLBYTENULLBYTENULLBYTENULLBYTENULLBYTENULLBYTENULLBYTENULLBYTENULLBYTENULLBYTENULLBYTENULLBYTENULLBYTENULLBYTENULLBYTENULLBYTENULLBYTENULLBYTENULLBYTENULLBYTENULLBYTENULLBYTENULLBYTENULLBYTENULLBYTENULLBYTENULLBYTENULLBYTENULLBYTENULLBYTENULLBYTENULLBYTENULLBYTENULLBYTENULLBYTENULLBYTENULLBYTENULLBYTENULLBYTENULLBYTENULLBYTENULLBYTENULLBYTENULLBYTENULLBYTENULLBYTENULLBYTENULLBYTENULLBYTENULLBYTENULLBYTENULLBYTENULLBYTENULLBYTENULLBYTENULLBYTENULLBYTENULLBYTENULLBYTENULLBYTENULLBYTENULLBYTENULLBYTENULLBYTENULLBYTENULLBYTENULLBYTENULLBYTENULLBYTENULLBYTENULLBYTEEOF
  604. Mode: 644
  605. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  606. Path: fixtures/proc/26233/schedstat
  607. Lines: 8
  608. ____________________________________
  609. < this is a malformed schedstat file >
  610. ------------------------------------
  611. \ ^__^
  612. \ (oo)\_______
  613. (__)\ )\/\
  614. ||----w |
  615. || ||
  616. Mode: 644
  617. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  618. Directory: fixtures/proc/26234
  619. Mode: 755
  620. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  621. Path: fixtures/proc/26234/maps
  622. Lines: 4
  623. 08048000-08089000 r-xp 00000000 03:01 104219 /bin/tcsh
  624. 08089000-0808c000 rw-p 00041000 03:01 104219 /bin/tcsh
  625. 0808c000-08146000 rwxp 00000000 00:00 0
  626. 40000000-40015000 r-xp 00000000 03:01 61874 /lib/ld-2.3.2.so
  627. Mode: 644
  628. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  629. Directory: fixtures/proc/584
  630. Mode: 755
  631. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  632. Path: fixtures/proc/584/stat
  633. Lines: 2
  634. 1020 ((a b ) ( c d) ) R 28378 1020 28378 34842 1020 4218880 286 0 0 0 0 0 0 0 20 0 1 0 10839175 10395648 155 18446744073709551615 4194304 4238788 140736466511168 140736466511168 140609271124624 0 0 0 0 0 0 0 17 5 0 0 0 0 0 6336016 6337300 25579520 140736466515030 140736466515061 140736466515061 140736466518002 0
  635. #!/bin/cat /proc/self/stat
  636. Mode: 644
  637. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  638. Path: fixtures/proc/buddyinfo
  639. Lines: 3
  640. Node 0, zone DMA 1 0 1 0 2 1 1 0 1 1 3
  641. Node 0, zone DMA32 759 572 791 475 194 45 12 0 0 0 0
  642. Node 0, zone Normal 4381 1093 185 1530 567 102 4 0 0 0 0
  643. Mode: 644
  644. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  645. Path: fixtures/proc/cpuinfo
  646. Lines: 216
  647. processor : 0
  648. vendor_id : GenuineIntel
  649. cpu family : 6
  650. model : 142
  651. model name : Intel(R) Core(TM) i7-8650U CPU @ 1.90GHz
  652. stepping : 10
  653. microcode : 0xb4
  654. cpu MHz : 799.998
  655. cache size : 8192 KB
  656. physical id : 0
  657. siblings : 8
  658. core id : 0
  659. cpu cores : 4
  660. apicid : 0
  661. initial apicid : 0
  662. fpu : yes
  663. fpu_exception : yes
  664. cpuid level : 22
  665. wp : yes
  666. flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf tsc_known_freq pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb invpcid_single pti ssbd ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm mpx rdseed adx smap clflushopt intel_pt xsaveopt xsavec xgetbv1 xsaves dtherm ida arat pln pts hwp hwp_notify hwp_act_window hwp_epp md_clear flush_l1d
  667. bugs : cpu_meltdown spectre_v1 spectre_v2 spec_store_bypass l1tf mds swapgs
  668. bogomips : 4224.00
  669. clflush size : 64
  670. cache_alignment : 64
  671. address sizes : 39 bits physical, 48 bits virtual
  672. power management:
  673. processor : 1
  674. vendor_id : GenuineIntel
  675. cpu family : 6
  676. model : 142
  677. model name : Intel(R) Core(TM) i7-8650U CPU @ 1.90GHz
  678. stepping : 10
  679. microcode : 0xb4
  680. cpu MHz : 800.037
  681. cache size : 8192 KB
  682. physical id : 0
  683. siblings : 8
  684. core id : 1
  685. cpu cores : 4
  686. apicid : 2
  687. initial apicid : 2
  688. fpu : yes
  689. fpu_exception : yes
  690. cpuid level : 22
  691. wp : yes
  692. flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf tsc_known_freq pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb invpcid_single pti ssbd ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm mpx rdseed adx smap clflushopt intel_pt xsaveopt xsavec xgetbv1 xsaves dtherm ida arat pln pts hwp hwp_notify hwp_act_window hwp_epp md_clear flush_l1d
  693. bugs : cpu_meltdown spectre_v1 spectre_v2 spec_store_bypass l1tf mds swapgs
  694. bogomips : 4224.00
  695. clflush size : 64
  696. cache_alignment : 64
  697. address sizes : 39 bits physical, 48 bits virtual
  698. power management:
  699. processor : 2
  700. vendor_id : GenuineIntel
  701. cpu family : 6
  702. model : 142
  703. model name : Intel(R) Core(TM) i7-8650U CPU @ 1.90GHz
  704. stepping : 10
  705. microcode : 0xb4
  706. cpu MHz : 800.010
  707. cache size : 8192 KB
  708. physical id : 0
  709. siblings : 8
  710. core id : 2
  711. cpu cores : 4
  712. apicid : 4
  713. initial apicid : 4
  714. fpu : yes
  715. fpu_exception : yes
  716. cpuid level : 22
  717. wp : yes
  718. flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf tsc_known_freq pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb invpcid_single pti ssbd ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm mpx rdseed adx smap clflushopt intel_pt xsaveopt xsavec xgetbv1 xsaves dtherm ida arat pln pts hwp hwp_notify hwp_act_window hwp_epp md_clear flush_l1d
  719. bugs : cpu_meltdown spectre_v1 spectre_v2 spec_store_bypass l1tf mds swapgs
  720. bogomips : 4224.00
  721. clflush size : 64
  722. cache_alignment : 64
  723. address sizes : 39 bits physical, 48 bits virtual
  724. power management:
  725. processor : 3
  726. vendor_id : GenuineIntel
  727. cpu family : 6
  728. model : 142
  729. model name : Intel(R) Core(TM) i7-8650U CPU @ 1.90GHz
  730. stepping : 10
  731. microcode : 0xb4
  732. cpu MHz : 800.028
  733. cache size : 8192 KB
  734. physical id : 0
  735. siblings : 8
  736. core id : 3
  737. cpu cores : 4
  738. apicid : 6
  739. initial apicid : 6
  740. fpu : yes
  741. fpu_exception : yes
  742. cpuid level : 22
  743. wp : yes
  744. flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf tsc_known_freq pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb invpcid_single pti ssbd ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm mpx rdseed adx smap clflushopt intel_pt xsaveopt xsavec xgetbv1 xsaves dtherm ida arat pln pts hwp hwp_notify hwp_act_window hwp_epp md_clear flush_l1d
  745. bugs : cpu_meltdown spectre_v1 spectre_v2 spec_store_bypass l1tf mds swapgs
  746. bogomips : 4224.00
  747. clflush size : 64
  748. cache_alignment : 64
  749. address sizes : 39 bits physical, 48 bits virtual
  750. power management:
  751. processor : 4
  752. vendor_id : GenuineIntel
  753. cpu family : 6
  754. model : 142
  755. model name : Intel(R) Core(TM) i7-8650U CPU @ 1.90GHz
  756. stepping : 10
  757. microcode : 0xb4
  758. cpu MHz : 799.989
  759. cache size : 8192 KB
  760. physical id : 0
  761. siblings : 8
  762. core id : 0
  763. cpu cores : 4
  764. apicid : 1
  765. initial apicid : 1
  766. fpu : yes
  767. fpu_exception : yes
  768. cpuid level : 22
  769. wp : yes
  770. flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf tsc_known_freq pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb invpcid_single pti ssbd ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm mpx rdseed adx smap clflushopt intel_pt xsaveopt xsavec xgetbv1 xsaves dtherm ida arat pln pts hwp hwp_notify hwp_act_window hwp_epp md_clear flush_l1d
  771. bugs : cpu_meltdown spectre_v1 spectre_v2 spec_store_bypass l1tf mds swapgs
  772. bogomips : 4224.00
  773. clflush size : 64
  774. cache_alignment : 64
  775. address sizes : 39 bits physical, 48 bits virtual
  776. power management:
  777. processor : 5
  778. vendor_id : GenuineIntel
  779. cpu family : 6
  780. model : 142
  781. model name : Intel(R) Core(TM) i7-8650U CPU @ 1.90GHz
  782. stepping : 10
  783. microcode : 0xb4
  784. cpu MHz : 800.083
  785. cache size : 8192 KB
  786. physical id : 0
  787. siblings : 8
  788. core id : 1
  789. cpu cores : 4
  790. apicid : 3
  791. initial apicid : 3
  792. fpu : yes
  793. fpu_exception : yes
  794. cpuid level : 22
  795. wp : yes
  796. flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf tsc_known_freq pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb invpcid_single pti ssbd ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm mpx rdseed adx smap clflushopt intel_pt xsaveopt xsavec xgetbv1 xsaves dtherm ida arat pln pts hwp hwp_notify hwp_act_window hwp_epp md_clear flush_l1d
  797. bugs : cpu_meltdown spectre_v1 spectre_v2 spec_store_bypass l1tf mds swapgs
  798. bogomips : 4224.00
  799. clflush size : 64
  800. cache_alignment : 64
  801. address sizes : 39 bits physical, 48 bits virtual
  802. power management:
  803. processor : 6
  804. vendor_id : GenuineIntel
  805. cpu family : 6
  806. model : 142
  807. model name : Intel(R) Core(TM) i7-8650U CPU @ 1.90GHz
  808. stepping : 10
  809. microcode : 0xb4
  810. cpu MHz : 800.017
  811. cache size : 8192 KB
  812. physical id : 0
  813. siblings : 8
  814. core id : 2
  815. cpu cores : 4
  816. apicid : 5
  817. initial apicid : 5
  818. fpu : yes
  819. fpu_exception : yes
  820. cpuid level : 22
  821. wp : yes
  822. flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf tsc_known_freq pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb invpcid_single pti ssbd ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm mpx rdseed adx smap clflushopt intel_pt xsaveopt xsavec xgetbv1 xsaves dtherm ida arat pln pts hwp hwp_notify hwp_act_window hwp_epp md_clear flush_l1d
  823. bugs : cpu_meltdown spectre_v1 spectre_v2 spec_store_bypass l1tf mds swapgs
  824. bogomips : 4224.00
  825. clflush size : 64
  826. cache_alignment : 64
  827. address sizes : 39 bits physical, 48 bits virtual
  828. power management:
  829. processor : 7
  830. vendor_id : GenuineIntel
  831. cpu family : 6
  832. model : 142
  833. model name : Intel(R) Core(TM) i7-8650U CPU @ 1.90GHz
  834. stepping : 10
  835. microcode : 0xb4
  836. cpu MHz : 800.030
  837. cache size : 8192 KB
  838. physical id : 0
  839. siblings : 8
  840. core id : 3
  841. cpu cores : 4
  842. apicid : 7
  843. initial apicid : 7
  844. fpu : yes
  845. fpu_exception : yes
  846. cpuid level : 22
  847. wp : yes
  848. flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf tsc_known_freq pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb invpcid_single pti ssbd ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm mpx rdseed adx smap clflushopt intel_pt xsaveopt xsavec xgetbv1 xsaves dtherm ida arat pln pts hwp hwp_notify hwp_act_window hwp_epp md_clear flush_l1d
  849. bugs : cpu_meltdown spectre_v1 spectre_v2 spec_store_bypass l1tf mds swapgs
  850. bogomips : 4224.00
  851. clflush size : 64
  852. cache_alignment : 64
  853. address sizes : 39 bits physical, 48 bits virtual
  854. power management:
  855. Mode: 444
  856. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  857. Path: fixtures/proc/crypto
  858. Lines: 972
  859. name : ccm(aes)
  860. driver : ccm_base(ctr(aes-aesni),cbcmac(aes-aesni))
  861. module : ccm
  862. priority : 300
  863. refcnt : 4
  864. selftest : passed
  865. internal : no
  866. type : aead
  867. async : no
  868. blocksize : 1
  869. ivsize : 16
  870. maxauthsize : 16
  871. geniv : <none>
  872. name : cbcmac(aes)
  873. driver : cbcmac(aes-aesni)
  874. module : ccm
  875. priority : 300
  876. refcnt : 7
  877. selftest : passed
  878. internal : no
  879. type : shash
  880. blocksize : 1
  881. digestsize : 16
  882. name : ecdh
  883. driver : ecdh-generic
  884. module : ecdh_generic
  885. priority : 100
  886. refcnt : 1
  887. selftest : passed
  888. internal : no
  889. type : kpp
  890. async : yes
  891. name : ecb(arc4)
  892. driver : ecb(arc4)-generic
  893. module : arc4
  894. priority : 100
  895. refcnt : 1
  896. selftest : passed
  897. internal : no
  898. type : skcipher
  899. async : no
  900. blocksize : 1
  901. min keysize : 1
  902. max keysize : 256
  903. ivsize : 0
  904. chunksize : 1
  905. walksize : 1
  906. name : arc4
  907. driver : arc4-generic
  908. module : arc4
  909. priority : 0
  910. refcnt : 3
  911. selftest : passed
  912. internal : no
  913. type : cipher
  914. blocksize : 1
  915. min keysize : 1
  916. max keysize : 256
  917. name : crct10dif
  918. driver : crct10dif-pclmul
  919. module : crct10dif_pclmul
  920. priority : 200
  921. refcnt : 2
  922. selftest : passed
  923. internal : no
  924. type : shash
  925. blocksize : 1
  926. digestsize : 2
  927. name : crc32
  928. driver : crc32-pclmul
  929. module : crc32_pclmul
  930. priority : 200
  931. refcnt : 1
  932. selftest : passed
  933. internal : no
  934. type : shash
  935. blocksize : 1
  936. digestsize : 4
  937. name : __ghash
  938. driver : cryptd(__ghash-pclmulqdqni)
  939. module : kernel
  940. priority : 50
  941. refcnt : 1
  942. selftest : passed
  943. internal : yes
  944. type : ahash
  945. async : yes
  946. blocksize : 16
  947. digestsize : 16
  948. name : ghash
  949. driver : ghash-clmulni
  950. module : ghash_clmulni_intel
  951. priority : 400
  952. refcnt : 1
  953. selftest : passed
  954. internal : no
  955. type : ahash
  956. async : yes
  957. blocksize : 16
  958. digestsize : 16
  959. name : __ghash
  960. driver : __ghash-pclmulqdqni
  961. module : ghash_clmulni_intel
  962. priority : 0
  963. refcnt : 1
  964. selftest : passed
  965. internal : yes
  966. type : shash
  967. blocksize : 16
  968. digestsize : 16
  969. name : crc32c
  970. driver : crc32c-intel
  971. module : crc32c_intel
  972. priority : 200
  973. refcnt : 5
  974. selftest : passed
  975. internal : no
  976. type : shash
  977. blocksize : 1
  978. digestsize : 4
  979. name : cbc(aes)
  980. driver : cbc(aes-aesni)
  981. module : kernel
  982. priority : 300
  983. refcnt : 1
  984. selftest : passed
  985. internal : no
  986. type : skcipher
  987. async : no
  988. blocksize : 16
  989. min keysize : 16
  990. max keysize : 32
  991. ivsize : 16
  992. chunksize : 16
  993. walksize : 16
  994. name : ctr(aes)
  995. driver : ctr(aes-aesni)
  996. module : kernel
  997. priority : 300
  998. refcnt : 5
  999. selftest : passed
  1000. internal : no
  1001. type : skcipher
  1002. async : no
  1003. blocksize : 1
  1004. min keysize : 16
  1005. max keysize : 32
  1006. ivsize : 16
  1007. chunksize : 16
  1008. walksize : 16
  1009. name : pkcs1pad(rsa,sha256)
  1010. driver : pkcs1pad(rsa-generic,sha256)
  1011. module : kernel
  1012. priority : 100
  1013. refcnt : 1
  1014. selftest : passed
  1015. internal : no
  1016. type : akcipher
  1017. name : __xts(aes)
  1018. driver : cryptd(__xts-aes-aesni)
  1019. module : kernel
  1020. priority : 451
  1021. refcnt : 1
  1022. selftest : passed
  1023. internal : yes
  1024. type : skcipher
  1025. async : yes
  1026. blocksize : 16
  1027. min keysize : 32
  1028. max keysize : 64
  1029. ivsize : 16
  1030. chunksize : 16
  1031. walksize : 16
  1032. name : xts(aes)
  1033. driver : xts-aes-aesni
  1034. module : kernel
  1035. priority : 401
  1036. refcnt : 1
  1037. selftest : passed
  1038. internal : no
  1039. type : skcipher
  1040. async : yes
  1041. blocksize : 16
  1042. min keysize : 32
  1043. max keysize : 64
  1044. ivsize : 16
  1045. chunksize : 16
  1046. walksize : 16
  1047. name : __ctr(aes)
  1048. driver : cryptd(__ctr-aes-aesni)
  1049. module : kernel
  1050. priority : 450
  1051. refcnt : 1
  1052. selftest : passed
  1053. internal : yes
  1054. type : skcipher
  1055. async : yes
  1056. blocksize : 1
  1057. max keysize : 32
  1058. ivsize : 16
  1059. chunksize : 16
  1060. walksize : 16
  1061. name : ctr(aes)
  1062. driver : ctr-aes-aesni
  1063. module : kernel
  1064. priority : 400
  1065. refcnt : 1
  1066. selftest : passed
  1067. internal : no
  1068. type : skcipher
  1069. async : yes
  1070. blocksize : 1
  1071. min keysize : 16
  1072. max keysize : 32
  1073. ivsize : 16
  1074. chunksize : 16
  1075. walksize : 16
  1076. name : __cbc(aes)
  1077. driver : cryptd(__cbc-aes-aesni)
  1078. module : kernel
  1079. priority : 450
  1080. refcnt : 1
  1081. selftest : passed
  1082. internal : yes
  1083. type : skcipher
  1084. async : yes
  1085. blocksize : 16
  1086. min keysize : 16
  1087. max keysize : 32
  1088. ivsize : 16
  1089. chunksize : 16
  1090. walksize : 16
  1091. name : cbc(aes)
  1092. driver : cbc-aes-aesni
  1093. module : kernel
  1094. priority : 400
  1095. refcnt : 1
  1096. selftest : passed
  1097. internal : no
  1098. type : skcipher
  1099. async : yes
  1100. blocksize : 16
  1101. min keysize : 16
  1102. max keysize : 32
  1103. ivsize : 16
  1104. chunksize : 16
  1105. walksize : 16
  1106. name : __ecb(aes)
  1107. driver : cryptd(__ecb-aes-aesni)
  1108. module : kernel
  1109. priority : 450
  1110. refcnt : 1
  1111. selftest : passed
  1112. internal : yes
  1113. type : skcipher
  1114. async : yes
  1115. blocksize : 16
  1116. min keysize : 16
  1117. max keysize : 32
  1118. ivsize : 0
  1119. chunksize : 16
  1120. walksize : 16
  1121. name : ecb(aes)
  1122. driver : ecb-aes-aesni
  1123. module : kernel
  1124. priority : 400
  1125. refcnt : 1
  1126. selftest : passed
  1127. internal : no
  1128. type : skcipher
  1129. async : yes
  1130. blocksize : 16
  1131. min keysize : 16
  1132. max keysize : 32
  1133. ivsize : 0
  1134. chunksize : 16
  1135. walksize : 16
  1136. name : __generic-gcm-aes-aesni
  1137. driver : cryptd(__driver-generic-gcm-aes-aesni)
  1138. module : kernel
  1139. priority : 50
  1140. refcnt : 1
  1141. selftest : passed
  1142. internal : yes
  1143. type : aead
  1144. async : yes
  1145. blocksize : 1
  1146. ivsize : 12
  1147. maxauthsize : 16
  1148. geniv : <none>
  1149. name : gcm(aes)
  1150. driver : generic-gcm-aesni
  1151. module : kernel
  1152. priority : 400
  1153. refcnt : 1
  1154. selftest : passed
  1155. internal : no
  1156. type : aead
  1157. async : yes
  1158. blocksize : 1
  1159. ivsize : 12
  1160. maxauthsize : 16
  1161. geniv : <none>
  1162. name : __generic-gcm-aes-aesni
  1163. driver : __driver-generic-gcm-aes-aesni
  1164. module : kernel
  1165. priority : 0
  1166. refcnt : 1
  1167. selftest : passed
  1168. internal : yes
  1169. type : aead
  1170. async : no
  1171. blocksize : 1
  1172. ivsize : 12
  1173. maxauthsize : 16
  1174. geniv : <none>
  1175. name : __gcm-aes-aesni
  1176. driver : cryptd(__driver-gcm-aes-aesni)
  1177. module : kernel
  1178. priority : 50
  1179. refcnt : 1
  1180. selftest : passed
  1181. internal : yes
  1182. type : aead
  1183. async : yes
  1184. blocksize : 1
  1185. ivsize : 8
  1186. maxauthsize : 16
  1187. geniv : <none>
  1188. name : rfc4106(gcm(aes))
  1189. driver : rfc4106-gcm-aesni
  1190. module : kernel
  1191. priority : 400
  1192. refcnt : 1
  1193. selftest : passed
  1194. internal : no
  1195. type : aead
  1196. async : yes
  1197. blocksize : 1
  1198. ivsize : 8
  1199. maxauthsize : 16
  1200. geniv : <none>
  1201. name : __gcm-aes-aesni
  1202. driver : __driver-gcm-aes-aesni
  1203. module : kernel
  1204. priority : 0
  1205. refcnt : 1
  1206. selftest : passed
  1207. internal : yes
  1208. type : aead
  1209. async : no
  1210. blocksize : 1
  1211. ivsize : 8
  1212. maxauthsize : 16
  1213. geniv : <none>
  1214. name : __xts(aes)
  1215. driver : __xts-aes-aesni
  1216. module : kernel
  1217. priority : 401
  1218. refcnt : 1
  1219. selftest : passed
  1220. internal : yes
  1221. type : skcipher
  1222. async : no
  1223. blocksize : 16
  1224. min keysize : 32
  1225. max keysize : 64
  1226. ivsize : 16
  1227. chunksize : 16
  1228. walksize : 16
  1229. name : __ctr(aes)
  1230. driver : __ctr-aes-aesni
  1231. module : kernel
  1232. priority : 400
  1233. refcnt : 1
  1234. selftest : passed
  1235. internal : yes
  1236. type : skcipher
  1237. async : no
  1238. blocksize : 1
  1239. min keysize : 16
  1240. max keysize : 32
  1241. ivsize : 16
  1242. chunksize : 16
  1243. walksize : 16
  1244. name : __cbc(aes)
  1245. driver : __cbc-aes-aesni
  1246. module : kernel
  1247. priority : 400
  1248. refcnt : 1
  1249. selftest : passed
  1250. internal : yes
  1251. type : skcipher
  1252. async : no
  1253. blocksize : 16
  1254. min keysize : 16
  1255. max keysize : 32
  1256. ivsize : 16
  1257. chunksize : 16
  1258. walksize : 16
  1259. name : __ecb(aes)
  1260. driver : __ecb-aes-aesni
  1261. module : kernel
  1262. priority : 400
  1263. refcnt : 1
  1264. selftest : passed
  1265. internal : yes
  1266. type : skcipher
  1267. async : no
  1268. blocksize : 16
  1269. min keysize : 16
  1270. max keysize : 32
  1271. ivsize : 0
  1272. chunksize : 16
  1273. walksize : 16
  1274. name : __aes
  1275. driver : __aes-aesni
  1276. module : kernel
  1277. priority : 300
  1278. refcnt : 1
  1279. selftest : passed
  1280. internal : yes
  1281. type : cipher
  1282. blocksize : 16
  1283. min keysize : 16
  1284. max keysize : 32
  1285. name : aes
  1286. driver : aes-aesni
  1287. module : kernel
  1288. priority : 300
  1289. refcnt : 8
  1290. selftest : passed
  1291. internal : no
  1292. type : cipher
  1293. blocksize : 16
  1294. min keysize : 16
  1295. max keysize : 32
  1296. name : hmac(sha1)
  1297. driver : hmac(sha1-generic)
  1298. module : kernel
  1299. priority : 100
  1300. refcnt : 9
  1301. selftest : passed
  1302. internal : no
  1303. type : shash
  1304. blocksize : 64
  1305. digestsize : 20
  1306. name : ghash
  1307. driver : ghash-generic
  1308. module : kernel
  1309. priority : 100
  1310. refcnt : 3
  1311. selftest : passed
  1312. internal : no
  1313. type : shash
  1314. blocksize : 16
  1315. digestsize : 16
  1316. name : jitterentropy_rng
  1317. driver : jitterentropy_rng
  1318. module : kernel
  1319. priority : 100
  1320. refcnt : 1
  1321. selftest : passed
  1322. internal : no
  1323. type : rng
  1324. seedsize : 0
  1325. name : stdrng
  1326. driver : drbg_nopr_hmac_sha256
  1327. module : kernel
  1328. priority : 221
  1329. refcnt : 2
  1330. selftest : passed
  1331. internal : no
  1332. type : rng
  1333. seedsize : 0
  1334. name : stdrng
  1335. driver : drbg_nopr_hmac_sha512
  1336. module : kernel
  1337. priority : 220
  1338. refcnt : 1
  1339. selftest : passed
  1340. internal : no
  1341. type : rng
  1342. seedsize : 0
  1343. name : stdrng
  1344. driver : drbg_nopr_hmac_sha384
  1345. module : kernel
  1346. priority : 219
  1347. refcnt : 1
  1348. selftest : passed
  1349. internal : no
  1350. type : rng
  1351. seedsize : 0
  1352. name : stdrng
  1353. driver : drbg_nopr_hmac_sha1
  1354. module : kernel
  1355. priority : 218
  1356. refcnt : 1
  1357. selftest : passed
  1358. internal : no
  1359. type : rng
  1360. seedsize : 0
  1361. name : stdrng
  1362. driver : drbg_nopr_sha256
  1363. module : kernel
  1364. priority : 217
  1365. refcnt : 1
  1366. selftest : passed
  1367. internal : no
  1368. type : rng
  1369. seedsize : 0
  1370. name : stdrng
  1371. driver : drbg_nopr_sha512
  1372. module : kernel
  1373. priority : 216
  1374. refcnt : 1
  1375. selftest : passed
  1376. internal : no
  1377. type : rng
  1378. seedsize : 0
  1379. name : stdrng
  1380. driver : drbg_nopr_sha384
  1381. module : kernel
  1382. priority : 215
  1383. refcnt : 1
  1384. selftest : passed
  1385. internal : no
  1386. type : rng
  1387. seedsize : 0
  1388. name : stdrng
  1389. driver : drbg_nopr_sha1
  1390. module : kernel
  1391. priority : 214
  1392. refcnt : 1
  1393. selftest : passed
  1394. internal : no
  1395. type : rng
  1396. seedsize : 0
  1397. name : stdrng
  1398. driver : drbg_nopr_ctr_aes256
  1399. module : kernel
  1400. priority : 213
  1401. refcnt : 1
  1402. selftest : passed
  1403. internal : no
  1404. type : rng
  1405. seedsize : 0
  1406. name : stdrng
  1407. driver : drbg_nopr_ctr_aes192
  1408. module : kernel
  1409. priority : 212
  1410. refcnt : 1
  1411. selftest : passed
  1412. internal : no
  1413. type : rng
  1414. seedsize : 0
  1415. name : stdrng
  1416. driver : drbg_nopr_ctr_aes128
  1417. module : kernel
  1418. priority : 211
  1419. refcnt : 1
  1420. selftest : passed
  1421. internal : no
  1422. type : rng
  1423. seedsize : 0
  1424. name : hmac(sha256)
  1425. driver : hmac(sha256-generic)
  1426. module : kernel
  1427. priority : 100
  1428. refcnt : 10
  1429. selftest : passed
  1430. internal : no
  1431. type : shash
  1432. blocksize : 64
  1433. digestsize : 32
  1434. name : stdrng
  1435. driver : drbg_pr_hmac_sha256
  1436. module : kernel
  1437. priority : 210
  1438. refcnt : 1
  1439. selftest : passed
  1440. internal : no
  1441. type : rng
  1442. seedsize : 0
  1443. name : stdrng
  1444. driver : drbg_pr_hmac_sha512
  1445. module : kernel
  1446. priority : 209
  1447. refcnt : 1
  1448. selftest : passed
  1449. internal : no
  1450. type : rng
  1451. seedsize : 0
  1452. name : stdrng
  1453. driver : drbg_pr_hmac_sha384
  1454. module : kernel
  1455. priority : 208
  1456. refcnt : 1
  1457. selftest : passed
  1458. internal : no
  1459. type : rng
  1460. seedsize : 0
  1461. name : stdrng
  1462. driver : drbg_pr_hmac_sha1
  1463. module : kernel
  1464. priority : 207
  1465. refcnt : 1
  1466. selftest : passed
  1467. internal : no
  1468. type : rng
  1469. seedsize : 0
  1470. name : stdrng
  1471. driver : drbg_pr_sha256
  1472. module : kernel
  1473. priority : 206
  1474. refcnt : 1
  1475. selftest : passed
  1476. internal : no
  1477. type : rng
  1478. seedsize : 0
  1479. name : stdrng
  1480. driver : drbg_pr_sha512
  1481. module : kernel
  1482. priority : 205
  1483. refcnt : 1
  1484. selftest : passed
  1485. internal : no
  1486. type : rng
  1487. seedsize : 0
  1488. name : stdrng
  1489. driver : drbg_pr_sha384
  1490. module : kernel
  1491. priority : 204
  1492. refcnt : 1
  1493. selftest : passed
  1494. internal : no
  1495. type : rng
  1496. seedsize : 0
  1497. name : stdrng
  1498. driver : drbg_pr_sha1
  1499. module : kernel
  1500. priority : 203
  1501. refcnt : 1
  1502. selftest : passed
  1503. internal : no
  1504. type : rng
  1505. seedsize : 0
  1506. name : stdrng
  1507. driver : drbg_pr_ctr_aes256
  1508. module : kernel
  1509. priority : 202
  1510. refcnt : 1
  1511. selftest : passed
  1512. internal : no
  1513. type : rng
  1514. seedsize : 0
  1515. name : stdrng
  1516. driver : drbg_pr_ctr_aes192
  1517. module : kernel
  1518. priority : 201
  1519. refcnt : 1
  1520. selftest : passed
  1521. internal : no
  1522. type : rng
  1523. seedsize : 0
  1524. name : stdrng
  1525. driver : drbg_pr_ctr_aes128
  1526. module : kernel
  1527. priority : 200
  1528. refcnt : 1
  1529. selftest : passed
  1530. internal : no
  1531. type : rng
  1532. seedsize : 0
  1533. name : 842
  1534. driver : 842-scomp
  1535. module : kernel
  1536. priority : 100
  1537. refcnt : 1
  1538. selftest : passed
  1539. internal : no
  1540. type : scomp
  1541. name : 842
  1542. driver : 842-generic
  1543. module : kernel
  1544. priority : 100
  1545. refcnt : 1
  1546. selftest : passed
  1547. internal : no
  1548. type : compression
  1549. name : lzo-rle
  1550. driver : lzo-rle-scomp
  1551. module : kernel
  1552. priority : 0
  1553. refcnt : 1
  1554. selftest : passed
  1555. internal : no
  1556. type : scomp
  1557. name : lzo-rle
  1558. driver : lzo-rle-generic
  1559. module : kernel
  1560. priority : 0
  1561. refcnt : 1
  1562. selftest : passed
  1563. internal : no
  1564. type : compression
  1565. name : lzo
  1566. driver : lzo-scomp
  1567. module : kernel
  1568. priority : 0
  1569. refcnt : 1
  1570. selftest : passed
  1571. internal : no
  1572. type : scomp
  1573. name : lzo
  1574. driver : lzo-generic
  1575. module : kernel
  1576. priority : 0
  1577. refcnt : 9
  1578. selftest : passed
  1579. internal : no
  1580. type : compression
  1581. name : crct10dif
  1582. driver : crct10dif-generic
  1583. module : kernel
  1584. priority : 100
  1585. refcnt : 1
  1586. selftest : passed
  1587. internal : no
  1588. type : shash
  1589. blocksize : 1
  1590. digestsize : 2
  1591. name : crc32c
  1592. driver : crc32c-generic
  1593. module : kernel
  1594. priority : 100
  1595. refcnt : 1
  1596. selftest : passed
  1597. internal : no
  1598. type : shash
  1599. blocksize : 1
  1600. digestsize : 4
  1601. name : zlib-deflate
  1602. driver : zlib-deflate-scomp
  1603. module : kernel
  1604. priority : 0
  1605. refcnt : 1
  1606. selftest : passed
  1607. internal : no
  1608. type : scomp
  1609. name : deflate
  1610. driver : deflate-scomp
  1611. module : kernel
  1612. priority : 0
  1613. refcnt : 1
  1614. selftest : passed
  1615. internal : no
  1616. type : scomp
  1617. name : deflate
  1618. driver : deflate-generic
  1619. module : kernel
  1620. priority : 0
  1621. refcnt : 1
  1622. selftest : passed
  1623. internal : no
  1624. type : compression
  1625. name : aes
  1626. driver : aes-generic
  1627. module : kernel
  1628. priority : 100
  1629. refcnt : 1
  1630. selftest : passed
  1631. internal : no
  1632. type : cipher
  1633. blocksize : 16
  1634. min keysize : 16
  1635. max keysize : 32
  1636. name : sha224
  1637. driver : sha224-generic
  1638. module : kernel
  1639. priority : 100
  1640. refcnt : 1
  1641. selftest : passed
  1642. internal : no
  1643. type : shash
  1644. blocksize : 64
  1645. digestsize : 28
  1646. name : sha256
  1647. driver : sha256-generic
  1648. module : kernel
  1649. priority : 100
  1650. refcnt : 11
  1651. selftest : passed
  1652. internal : no
  1653. type : shash
  1654. blocksize : 64
  1655. digestsize : 32
  1656. name : sha1
  1657. driver : sha1-generic
  1658. module : kernel
  1659. priority : 100
  1660. refcnt : 11
  1661. selftest : passed
  1662. internal : no
  1663. type : shash
  1664. blocksize : 64
  1665. digestsize : 20
  1666. name : md5
  1667. driver : md5-generic
  1668. module : kernel
  1669. priority : 0
  1670. refcnt : 1
  1671. selftest : passed
  1672. internal : no
  1673. type : shash
  1674. blocksize : 64
  1675. digestsize : 16
  1676. name : ecb(cipher_null)
  1677. driver : ecb-cipher_null
  1678. module : kernel
  1679. priority : 100
  1680. refcnt : 1
  1681. selftest : passed
  1682. internal : no
  1683. type : skcipher
  1684. async : no
  1685. blocksize : 1
  1686. min keysize : 0
  1687. max keysize : 0
  1688. ivsize : 0
  1689. chunksize : 1
  1690. walksize : 1
  1691. name : digest_null
  1692. driver : digest_null-generic
  1693. module : kernel
  1694. priority : 0
  1695. refcnt : 1
  1696. selftest : passed
  1697. internal : no
  1698. type : shash
  1699. blocksize : 1
  1700. digestsize : 0
  1701. name : compress_null
  1702. driver : compress_null-generic
  1703. module : kernel
  1704. priority : 0
  1705. refcnt : 1
  1706. selftest : passed
  1707. internal : no
  1708. type : compression
  1709. name : cipher_null
  1710. driver : cipher_null-generic
  1711. module : kernel
  1712. priority : 0
  1713. refcnt : 1
  1714. selftest : passed
  1715. internal : no
  1716. type : cipher
  1717. blocksize : 1
  1718. min keysize : 0
  1719. max keysize : 0
  1720. name : rsa
  1721. driver : rsa-generic
  1722. module : kernel
  1723. priority : 100
  1724. refcnt : 1
  1725. selftest : passed
  1726. internal : no
  1727. type : akcipher
  1728. name : dh
  1729. driver : dh-generic
  1730. module : kernel
  1731. priority : 100
  1732. refcnt : 1
  1733. selftest : passed
  1734. internal : no
  1735. type : kpp
  1736. name : aes
  1737. driver : aes-asm
  1738. module : kernel
  1739. priority : 200
  1740. refcnt : 1
  1741. selftest : passed
  1742. internal : no
  1743. type : cipher
  1744. blocksize : 16
  1745. min keysize : 16
  1746. max keysize : 32
  1747. Mode: 444
  1748. Mode: 644
  1749. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  1750. Path: fixtures/proc/diskstats
  1751. Lines: 52
  1752. 1 0 ram0 0 0 0 0 0 0 0 0 0 0 0
  1753. 1 1 ram1 0 0 0 0 0 0 0 0 0 0 0
  1754. 1 2 ram2 0 0 0 0 0 0 0 0 0 0 0
  1755. 1 3 ram3 0 0 0 0 0 0 0 0 0 0 0
  1756. 1 4 ram4 0 0 0 0 0 0 0 0 0 0 0
  1757. 1 5 ram5 0 0 0 0 0 0 0 0 0 0 0
  1758. 1 6 ram6 0 0 0 0 0 0 0 0 0 0 0
  1759. 1 7 ram7 0 0 0 0 0 0 0 0 0 0 0
  1760. 1 8 ram8 0 0 0 0 0 0 0 0 0 0 0
  1761. 1 9 ram9 0 0 0 0 0 0 0 0 0 0 0
  1762. 1 10 ram10 0 0 0 0 0 0 0 0 0 0 0
  1763. 1 11 ram11 0 0 0 0 0 0 0 0 0 0 0
  1764. 1 12 ram12 0 0 0 0 0 0 0 0 0 0 0
  1765. 1 13 ram13 0 0 0 0 0 0 0 0 0 0 0
  1766. 1 14 ram14 0 0 0 0 0 0 0 0 0 0 0
  1767. 1 15 ram15 0 0 0 0 0 0 0 0 0 0 0
  1768. 7 0 loop0 0 0 0 0 0 0 0 0 0 0 0
  1769. 7 1 loop1 0 0 0 0 0 0 0 0 0 0 0
  1770. 7 2 loop2 0 0 0 0 0 0 0 0 0 0 0
  1771. 7 3 loop3 0 0 0 0 0 0 0 0 0 0 0
  1772. 7 4 loop4 0 0 0 0 0 0 0 0 0 0 0
  1773. 7 5 loop5 0 0 0 0 0 0 0 0 0 0 0
  1774. 7 6 loop6 0 0 0 0 0 0 0 0 0 0 0
  1775. 7 7 loop7 0 0 0 0 0 0 0 0 0 0 0
  1776. 8 0 sda 25354637 34367663 1003346126 18492372 28444756 11134226 505697032 63877960 0 9653880 82621804
  1777. 8 1 sda1 250 0 2000 36 0 0 0 0 0 36 36
  1778. 8 2 sda2 246 0 1968 32 0 0 0 0 0 32 32
  1779. 8 3 sda3 340 13 2818 52 11 8 152 8 0 56 60
  1780. 8 4 sda4 25353629 34367650 1003337964 18492232 27448755 11134218 505696880 61593380 0 7576432 80332428
  1781. 252 0 dm-0 59910002 0 1003337218 46229572 39231014 0 505696880 1158557800 0 11325968 1206301256
  1782. 252 1 dm-1 388 0 3104 84 74 0 592 0 0 76 84
  1783. 252 2 dm-2 11571 0 308350 6536 153522 0 5093416 122884 0 65400 129416
  1784. 252 3 dm-3 3870 0 3870 104 0 0 0 0 0 16 104
  1785. 252 4 dm-4 392 0 1034 28 38 0 137 16 0 24 44
  1786. 252 5 dm-5 3729 0 84279 924 98918 0 1151688 104684 0 58848 105632
  1787. 179 0 mmcblk0 192 3 1560 156 0 0 0 0 0 136 156
  1788. 179 1 mmcblk0p1 17 3 160 24 0 0 0 0 0 24 24
  1789. 179 2 mmcblk0p2 95 0 760 68 0 0 0 0 0 68 68
  1790. 2 0 fd0 2 0 16 80 0 0 0 0 0 80 80
  1791. 254 0 vda 1775784 15386 32670882 8655768 6038856 20711856 213637440 2069221364 0 41614592 2077872228
  1792. 254 1 vda1 668 85 5984 956 207 4266 35784 32772 0 8808 33720
  1793. 254 2 vda2 1774936 15266 32663262 8654692 5991028 20707590 213601656 2069152216 0 41607628 2077801992
  1794. 11 0 sr0 0 0 0 0 0 0 0 0 0 0 0
  1795. 259 0 nvme0n1 47114 4 4643973 21650 1078320 43950 39451633 1011053 0 222766 1032546
  1796. 259 1 nvme0n1p1 1140 0 9370 16 1 0 1 0 0 16 16
  1797. 259 2 nvme0n1p2 45914 4 4631243 21626 1036885 43950 39451632 919480 0 131580 940970
  1798. 8 0 sdb 326552 841 9657779 84 41822 2895 1972905 5007 0 60730 67070 68851 0 1925173784 11130
  1799. 8 1 sdb1 231 3 34466 4 24 23 106 0 0 64 64 0 0 0 0
  1800. 8 2 sdb2 326310 838 9622281 67 40726 2872 1972799 4924 0 58250 64567 68851 0 1925173784 11130
  1801. 8 0 sdc 14202 71 579164 21861 2995 1589 180500 40875 0 11628 55200 0 0 0 0 127 182
  1802. 8 1 sdc1 1027 0 13795 5021 2 0 4096 3 0 690 4579 0 0 0 0 0 0
  1803. 8 2 sdc2 13126 71 561749 16802 2830 1589 176404 40620 0 10931 50449 0 0 0 0 0 0
  1804. Mode: 664
  1805. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  1806. Directory: fixtures/proc/fs
  1807. Mode: 755
  1808. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  1809. Directory: fixtures/proc/fs/fscache
  1810. Mode: 755
  1811. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  1812. Path: fixtures/proc/fs/fscache/stats
  1813. Lines: 24
  1814. FS-Cache statistics
  1815. Cookies: idx=3 dat=67877 spc=0
  1816. Objects: alc=67473 nal=0 avl=67473 ded=388
  1817. ChkAux : non=12 ok=33 upd=44 obs=55
  1818. Pages : mrk=547164 unc=364577
  1819. Acquire: n=67880 nul=98 noc=25 ok=67780 nbf=39 oom=26
  1820. Lookups: n=67473 neg=67470 pos=58 crt=67473 tmo=85
  1821. Invals : n=14 run=13
  1822. Updates: n=7 nul=3 run=8
  1823. Relinqs: n=394 nul=1 wcr=2 rtr=3
  1824. AttrChg: n=6 ok=5 nbf=4 oom=3 run=2
  1825. Allocs : n=20 ok=19 wt=18 nbf=17 int=16
  1826. Allocs : ops=15 owt=14 abt=13
  1827. Retrvls: n=151959 ok=82823 wt=23467 nod=69136 nbf=15 int=69 oom=43
  1828. Retrvls: ops=151959 owt=42747 abt=44
  1829. Stores : n=225565 ok=225565 agn=12 nbf=13 oom=14
  1830. Stores : ops=69156 run=294721 pgs=225565 rxd=225565 olm=43
  1831. VmScan : nos=364512 gon=2 bsy=43 can=12 wt=66
  1832. Ops : pend=42753 run=221129 enq=628798 can=11 rej=88
  1833. Ops : ini=377538 dfr=27 rel=377538 gc=37
  1834. CacheOp: alo=1 luo=2 luc=3 gro=4
  1835. CacheOp: inv=5 upo=6 dro=7 pto=8 atc=9 syn=10
  1836. CacheOp: rap=11 ras=12 alp=13 als=14 wrp=15 ucp=16 dsp=17
  1837. CacheEv: nsp=18 stl=19 rtr=20 cul=21EOF
  1838. Mode: 644
  1839. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  1840. Directory: fixtures/proc/fs/xfs
  1841. Mode: 755
  1842. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  1843. Path: fixtures/proc/fs/xfs/stat
  1844. Lines: 23
  1845. extent_alloc 92447 97589 92448 93751
  1846. abt 0 0 0 0
  1847. blk_map 1767055 188820 184891 92447 92448 2140766 0
  1848. bmbt 0 0 0 0
  1849. dir 185039 92447 92444 136422
  1850. trans 706 944304 0
  1851. ig 185045 58807 0 126238 0 33637 22
  1852. log 2883 113448 9 17360 739
  1853. push_ail 945014 0 134260 15483 0 3940 464 159985 0 40
  1854. xstrat 92447 0
  1855. rw 107739 94045
  1856. attr 4 0 0 0
  1857. icluster 8677 7849 135802
  1858. vnodes 92601 0 0 0 92444 92444 92444 0
  1859. buf 2666287 7122 2659202 3599 2 7085 0 10297 7085
  1860. abtb2 184941 1277345 13257 13278 0 0 0 0 0 0 0 0 0 0 2746147
  1861. abtc2 345295 2416764 172637 172658 0 0 0 0 0 0 0 0 0 0 21406023
  1862. bmbt2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
  1863. ibt2 343004 1358467 0 0 0 0 0 0 0 0 0 0 0 0 0
  1864. fibt2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
  1865. qm 0 0 0 0 0 0 0 0
  1866. xpc 399724544 92823103 86219234
  1867. debug 0
  1868. Mode: 644
  1869. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  1870. Path: fixtures/proc/loadavg
  1871. Lines: 1
  1872. 0.02 0.04 0.05 1/497 11947
  1873. Mode: 444
  1874. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  1875. Path: fixtures/proc/mdstat
  1876. Lines: 60
  1877. Personalities : [linear] [multipath] [raid0] [raid1] [raid6] [raid5] [raid4] [raid10]
  1878. md3 : active raid6 sda1[8] sdh1[7] sdg1[6] sdf1[5] sde1[11] sdd1[3] sdc1[10] sdb1[9] sdd1[10](S) sdd2[11](S)
  1879. 5853468288 blocks super 1.2 level 6, 64k chunk, algorithm 2 [8/8] [UUUUUUUU]
  1880. md127 : active raid1 sdi2[0] sdj2[1]
  1881. 312319552 blocks [2/2] [UU]
  1882. md0 : active raid1 sdi1[0] sdj1[1]
  1883. 248896 blocks [2/2] [UU]
  1884. md4 : inactive raid1 sda3[0](F) sdb3[1](S)
  1885. 4883648 blocks [2/2] [UU]
  1886. md6 : active raid1 sdb2[2](F) sdc[1](S) sda2[0]
  1887. 195310144 blocks [2/1] [U_]
  1888. [=>...................] recovery = 8.5% (16775552/195310144) finish=17.0min speed=259783K/sec
  1889. md8 : active raid1 sdb1[1] sda1[0] sdc[2](S) sde[3](S)
  1890. 195310144 blocks [2/2] [UU]
  1891. [=>...................] resync = 8.5% (16775552/195310144) finish=17.0min speed=259783K/sec
  1892. md201 : active raid1 sda3[0] sdb3[1]
  1893. 1993728 blocks super 1.2 [2/2] [UU]
  1894. [=>...................] check = 5.7% (114176/1993728) finish=0.2min speed=114176K/sec
  1895. md7 : active raid6 sdb1[0] sde1[3] sdd1[2] sdc1[1](F)
  1896. 7813735424 blocks super 1.2 level 6, 512k chunk, algorithm 2 [4/3] [U_UU]
  1897. bitmap: 0/30 pages [0KB], 65536KB chunk
  1898. md9 : active raid1 sdc2[2] sdd2[3] sdb2[1] sda2[0] sde[4](F) sdf[5](F) sdg[6](S)
  1899. 523968 blocks super 1.2 [4/4] [UUUU]
  1900. resync=DELAYED
  1901. md10 : active raid0 sda1[0] sdb1[1]
  1902. 314159265 blocks 64k chunks
  1903. md11 : active (auto-read-only) raid1 sdb2[0] sdc2[1] sdc3[2](F) hda[4](S) ssdc2[3](S)
  1904. 4190208 blocks super 1.2 [2/2] [UU]
  1905. resync=PENDING
  1906. md12 : active raid0 sdc2[0] sdd2[1]
  1907. 3886394368 blocks super 1.2 512k chunks
  1908. md126 : active raid0 sdb[1] sdc[0]
  1909. 1855870976 blocks super external:/md127/0 128k chunks
  1910. md219 : inactive sdb[2](S) sdc[1](S) sda[0](S)
  1911. 7932 blocks super external:imsm
  1912. md00 : active raid0 xvdb[0]
  1913. 4186624 blocks super 1.2 256k chunks
  1914. md120 : active linear sda1[1] sdb1[0]
  1915. 2095104 blocks super 1.2 0k rounding
  1916. md101 : active (read-only) raid0 sdb[2] sdd[1] sdc[0]
  1917. 322560 blocks super 1.2 512k chunks
  1918. unused devices: <none>
  1919. Mode: 644
  1920. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  1921. Path: fixtures/proc/meminfo
  1922. Lines: 42
  1923. MemTotal: 15666184 kB
  1924. MemFree: 440324 kB
  1925. Buffers: 1020128 kB
  1926. Cached: 12007640 kB
  1927. SwapCached: 0 kB
  1928. Active: 6761276 kB
  1929. Inactive: 6532708 kB
  1930. Active(anon): 267256 kB
  1931. Inactive(anon): 268 kB
  1932. Active(file): 6494020 kB
  1933. Inactive(file): 6532440 kB
  1934. Unevictable: 0 kB
  1935. Mlocked: 0 kB
  1936. SwapTotal: 0 kB
  1937. SwapFree: 0 kB
  1938. Dirty: 768 kB
  1939. Writeback: 0 kB
  1940. AnonPages: 266216 kB
  1941. Mapped: 44204 kB
  1942. Shmem: 1308 kB
  1943. Slab: 1807264 kB
  1944. SReclaimable: 1738124 kB
  1945. SUnreclaim: 69140 kB
  1946. KernelStack: 1616 kB
  1947. PageTables: 5288 kB
  1948. NFS_Unstable: 0 kB
  1949. Bounce: 0 kB
  1950. WritebackTmp: 0 kB
  1951. CommitLimit: 7833092 kB
  1952. Committed_AS: 530844 kB
  1953. VmallocTotal: 34359738367 kB
  1954. VmallocUsed: 36596 kB
  1955. VmallocChunk: 34359637840 kB
  1956. HardwareCorrupted: 0 kB
  1957. AnonHugePages: 12288 kB
  1958. HugePages_Total: 0
  1959. HugePages_Free: 0
  1960. HugePages_Rsvd: 0
  1961. HugePages_Surp: 0
  1962. Hugepagesize: 2048 kB
  1963. DirectMap4k: 91136 kB
  1964. DirectMap2M: 16039936 kB
  1965. Mode: 664
  1966. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  1967. Directory: fixtures/proc/net
  1968. Mode: 755
  1969. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  1970. Path: fixtures/proc/net/arp
  1971. Lines: 2
  1972. IP address HW type Flags HW address Mask Device
  1973. 192.168.224.1 0x1 0x2 00:50:56:c0:00:08 * ens33
  1974. Mode: 664
  1975. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  1976. Path: fixtures/proc/net/dev
  1977. Lines: 6
  1978. Inter-| Receive | Transmit
  1979. face |bytes packets errs drop fifo frame compressed multicast|bytes packets errs drop fifo colls carrier compressed
  1980. vethf345468: 648 8 0 0 0 0 0 0 438 5 0 0 0 0 0 0
  1981. lo: 1664039048 1566805 0 0 0 0 0 0 1664039048 1566805 0 0 0 0 0 0
  1982. docker0: 2568 38 0 0 0 0 0 0 438 5 0 0 0 0 0 0
  1983. eth0: 874354587 1036395 0 0 0 0 0 0 563352563 732147 0 0 0 0 0 0
  1984. Mode: 644
  1985. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  1986. Path: fixtures/proc/net/ip_vs
  1987. Lines: 21
  1988. IP Virtual Server version 1.2.1 (size=4096)
  1989. Prot LocalAddress:Port Scheduler Flags
  1990. -> RemoteAddress:Port Forward Weight ActiveConn InActConn
  1991. TCP C0A80016:0CEA wlc
  1992. -> C0A85216:0CEA Tunnel 100 248 2
  1993. -> C0A85318:0CEA Tunnel 100 248 2
  1994. -> C0A85315:0CEA Tunnel 100 248 1
  1995. TCP C0A80039:0CEA wlc
  1996. -> C0A85416:0CEA Tunnel 0 0 0
  1997. -> C0A85215:0CEA Tunnel 100 1499 0
  1998. -> C0A83215:0CEA Tunnel 100 1498 0
  1999. TCP C0A80037:0CEA wlc
  2000. -> C0A8321A:0CEA Tunnel 0 0 0
  2001. -> C0A83120:0CEA Tunnel 100 0 0
  2002. TCP [2620:0000:0000:0000:0000:0000:0000:0001]:0050 sh
  2003. -> [2620:0000:0000:0000:0000:0000:0000:0002]:0050 Route 1 0 0
  2004. -> [2620:0000:0000:0000:0000:0000:0000:0003]:0050 Route 1 0 0
  2005. -> [2620:0000:0000:0000:0000:0000:0000:0004]:0050 Route 1 1 1
  2006. FWM 10001000 wlc
  2007. -> C0A8321A:0CEA Route 0 0 1
  2008. -> C0A83215:0CEA Route 0 0 2
  2009. Mode: 644
  2010. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  2011. Path: fixtures/proc/net/ip_vs_stats
  2012. Lines: 6
  2013. Total Incoming Outgoing Incoming Outgoing
  2014. Conns Packets Packets Bytes Bytes
  2015. 16AA370 E33656E5 0 51D8C8883AB3 0
  2016. Conns/s Pkts/s Pkts/s Bytes/s Bytes/s
  2017. 4 1FB3C 0 1282A8F 0
  2018. Mode: 644
  2019. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  2020. Path: fixtures/proc/net/protocols
  2021. Lines: 14
  2022. protocol size sockets memory press maxhdr slab module cl co di ac io in de sh ss gs se re sp bi br ha uh gp em
  2023. PACKET 1344 2 -1 NI 0 no kernel n n n n n n n n n n n n n n n n n n n
  2024. PINGv6 1112 0 -1 NI 0 yes kernel y y y n n y n n y y y y n y y y y y n
  2025. RAWv6 1112 1 -1 NI 0 yes kernel y y y n y y y n y y y y n y y y y n n
  2026. UDPLITEv6 1216 0 57 NI 0 yes kernel y y y n y y y n y y y y n n n y y y n
  2027. UDPv6 1216 10 57 NI 0 yes kernel y y y n y y y n y y y y n n n y y y n
  2028. TCPv6 2144 1937 1225378 no 320 yes kernel y y y y y y y y y y y y y n y y y y y
  2029. UNIX 1024 120 -1 NI 0 yes kernel n n n n n n n n n n n n n n n n n n n
  2030. UDP-Lite 1024 0 57 NI 0 yes kernel y y y n y y y n y y y y y n n y y y n
  2031. PING 904 0 -1 NI 0 yes kernel y y y n n y n n y y y y n y y y y y n
  2032. RAW 912 0 -1 NI 0 yes kernel y y y n y y y n y y y y n y y y y n n
  2033. UDP 1024 73 57 NI 0 yes kernel y y y n y y y n y y y y y n n y y y n
  2034. TCP 1984 93064 1225378 yes 320 yes kernel y y y y y y y y y y y y y n y y y y y
  2035. NETLINK 1040 16 -1 NI 0 no kernel n n n n n n n n n n n n n n n n n n n
  2036. Mode: 444
  2037. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  2038. Directory: fixtures/proc/net/rpc
  2039. Mode: 755
  2040. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  2041. Path: fixtures/proc/net/rpc/nfs
  2042. Lines: 5
  2043. net 18628 0 18628 6
  2044. rpc 4329785 0 4338291
  2045. proc2 18 2 69 0 0 4410 0 0 0 0 0 0 0 0 0 0 0 99 2
  2046. proc3 22 1 4084749 29200 94754 32580 186 47747 7981 8639 0 6356 0 6962 0 7958 0 0 241 4 4 2 39
  2047. proc4 61 1 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
  2048. Mode: 644
  2049. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  2050. Path: fixtures/proc/net/rpc/nfsd
  2051. Lines: 11
  2052. rc 0 6 18622
  2053. fh 0 0 0 0 0
  2054. io 157286400 0
  2055. th 8 0 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000
  2056. ra 32 0 0 0 0 0 0 0 0 0 0 0
  2057. net 18628 0 18628 6
  2058. rpc 18628 0 0 0 0
  2059. proc2 18 2 69 0 0 4410 0 0 0 0 0 0 0 0 0 0 0 99 2
  2060. proc3 22 2 112 0 2719 111 0 0 0 0 0 0 0 0 0 0 0 27 216 0 2 1 0
  2061. proc4 2 2 10853
  2062. proc4ops 72 0 0 0 1098 2 0 0 0 0 8179 5896 0 0 0 0 5900 0 0 2 0 2 0 9609 0 2 150 1272 0 0 0 1236 0 0 0 0 3 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
  2063. Mode: 644
  2064. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  2065. Path: fixtures/proc/net/sockstat
  2066. Lines: 6
  2067. sockets: used 1602
  2068. TCP: inuse 35 orphan 0 tw 4 alloc 59 mem 22
  2069. UDP: inuse 12 mem 62
  2070. UDPLITE: inuse 0
  2071. RAW: inuse 0
  2072. FRAG: inuse 0 memory 0
  2073. Mode: 444
  2074. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  2075. Path: fixtures/proc/net/sockstat6
  2076. Lines: 5
  2077. TCP6: inuse 17
  2078. UDP6: inuse 9
  2079. UDPLITE6: inuse 0
  2080. RAW6: inuse 1
  2081. FRAG6: inuse 0 memory 0
  2082. Mode: 444
  2083. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  2084. Path: fixtures/proc/net/softnet_stat
  2085. Lines: 2
  2086. 00015c73 00020e76 F0000769 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000
  2087. 01663fb2 00000000 000109a4 00000000 00000000 00000000 00000000 00000000 00000000
  2088. Mode: 644
  2089. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  2090. Path: fixtures/proc/net/softnet_stat.broken
  2091. Lines: 1
  2092. 00015c73 00020e76 F0000769 00000000
  2093. Mode: 644
  2094. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  2095. Path: fixtures/proc/net/tcp
  2096. Lines: 4
  2097. sl local_address rem_address st tx_queue rx_queue tr tm->when retrnsmt uid timeout inode
  2098. 0: 0500000A:0016 00000000:0000 0A 00000000:00000001 00:00000000 00000000 0 0 2740 1 ffff88003d3af3c0 100 0 0 10 0
  2099. 1: 00000000:0016 00000000:0000 0A 00000001:00000000 00:00000000 00000000 0 0 2740 1 ffff88003d3af3c0 100 0 0 10 0
  2100. 2: 00000000:0016 00000000:0000 0A 00000001:00000001 00:00000000 00000000 0 0 2740 1 ffff88003d3af3c0 100 0 0 10 0
  2101. Mode: 644
  2102. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  2103. Path: fixtures/proc/net/tcp6
  2104. Lines: 3
  2105. sl local_address remote_address st tx_queue rx_queue tr tm->when retrnsmt uid timeout inode ref pointer drops
  2106. 1315: 00000000000000000000000000000000:14EB 00000000000000000000000000000000:0000 07 00000000:00000000 00:00000000 00000000 981 0 21040 2 0000000013726323 0
  2107. 6073: 000080FE00000000FFADE15609667CFE:C781 00000000000000000000000000000000:0000 07 00000000:00000000 00:00000000 00000000 1000 0 11337031 2 00000000b9256fdd 0
  2108. Mode: 644
  2109. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  2110. Path: fixtures/proc/net/udp
  2111. Lines: 4
  2112. sl local_address rem_address st tx_queue rx_queue tr tm->when retrnsmt uid timeout inode
  2113. 0: 0500000A:0016 00000000:0000 0A 00000000:00000001 00:00000000 00000000 0 0 2740 1 ffff88003d3af3c0 100 0 0 10 0
  2114. 1: 00000000:0016 00000000:0000 0A 00000001:00000000 00:00000000 00000000 0 0 2740 1 ffff88003d3af3c0 100 0 0 10 0
  2115. 2: 00000000:0016 00000000:0000 0A 00000001:00000001 00:00000000 00000000 0 0 2740 1 ffff88003d3af3c0 100 0 0 10 0
  2116. Mode: 644
  2117. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  2118. Path: fixtures/proc/net/udp6
  2119. Lines: 3
  2120. sl local_address remote_address st tx_queue rx_queue tr tm->when retrnsmt uid timeout inode ref pointer drops
  2121. 1315: 00000000000000000000000000000000:14EB 00000000000000000000000000000000:0000 07 00000000:00000000 00:00000000 00000000 981 0 21040 2 0000000013726323 0
  2122. 6073: 000080FE00000000FFADE15609667CFE:C781 00000000000000000000000000000000:0000 07 00000000:00000000 00:00000000 00000000 1000 0 11337031 2 00000000b9256fdd 0
  2123. Mode: 644
  2124. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  2125. Path: fixtures/proc/net/udp_broken
  2126. Lines: 2
  2127. sl local_address rem_address st
  2128. 1: 00000000:0016 00000000:0000 0A
  2129. Mode: 644
  2130. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  2131. Path: fixtures/proc/net/unix
  2132. Lines: 6
  2133. Num RefCount Protocol Flags Type St Inode Path
  2134. 0000000000000000: 00000002 00000000 00010000 0001 01 3442596 /var/run/postgresql/.s.PGSQL.5432
  2135. 0000000000000000: 0000000a 00000000 00010000 0005 01 10061 /run/udev/control
  2136. 0000000000000000: 00000007 00000000 00000000 0002 01 12392 /dev/log
  2137. 0000000000000000: 00000003 00000000 00000000 0001 03 4787297 /var/run/postgresql/.s.PGSQL.5432
  2138. 0000000000000000: 00000003 00000000 00000000 0001 03 5091797
  2139. Mode: 644
  2140. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  2141. Path: fixtures/proc/net/unix_without_inode
  2142. Lines: 6
  2143. Num RefCount Protocol Flags Type St Path
  2144. 0000000000000000: 00000002 00000000 00010000 0001 01 /var/run/postgresql/.s.PGSQL.5432
  2145. 0000000000000000: 0000000a 00000000 00010000 0005 01 /run/udev/control
  2146. 0000000000000000: 00000007 00000000 00000000 0002 01 /dev/log
  2147. 0000000000000000: 00000003 00000000 00000000 0001 03 /var/run/postgresql/.s.PGSQL.5432
  2148. 0000000000000000: 00000003 00000000 00000000 0001 03
  2149. Mode: 644
  2150. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  2151. Path: fixtures/proc/net/xfrm_stat
  2152. Lines: 28
  2153. XfrmInError 1
  2154. XfrmInBufferError 2
  2155. XfrmInHdrError 4
  2156. XfrmInNoStates 3
  2157. XfrmInStateProtoError 40
  2158. XfrmInStateModeError 100
  2159. XfrmInStateSeqError 6000
  2160. XfrmInStateExpired 4
  2161. XfrmInStateMismatch 23451
  2162. XfrmInStateInvalid 55555
  2163. XfrmInTmplMismatch 51
  2164. XfrmInNoPols 65432
  2165. XfrmInPolBlock 100
  2166. XfrmInPolError 10000
  2167. XfrmOutError 1000000
  2168. XfrmOutBundleGenError 43321
  2169. XfrmOutBundleCheckError 555
  2170. XfrmOutNoStates 869
  2171. XfrmOutStateProtoError 4542
  2172. XfrmOutStateModeError 4
  2173. XfrmOutStateSeqError 543
  2174. XfrmOutStateExpired 565
  2175. XfrmOutPolBlock 43456
  2176. XfrmOutPolDead 7656
  2177. XfrmOutPolError 1454
  2178. XfrmFwdHdrError 6654
  2179. XfrmOutStateInvalid 28765
  2180. XfrmAcquireError 24532
  2181. Mode: 644
  2182. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  2183. Directory: fixtures/proc/pressure
  2184. Mode: 755
  2185. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  2186. Path: fixtures/proc/pressure/cpu
  2187. Lines: 1
  2188. some avg10=0.10 avg60=2.00 avg300=3.85 total=15
  2189. Mode: 644
  2190. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  2191. Path: fixtures/proc/pressure/io
  2192. Lines: 2
  2193. some avg10=0.10 avg60=2.00 avg300=3.85 total=15
  2194. full avg10=0.20 avg60=3.00 avg300=4.95 total=25
  2195. Mode: 644
  2196. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  2197. Path: fixtures/proc/pressure/memory
  2198. Lines: 2
  2199. some avg10=0.10 avg60=2.00 avg300=3.85 total=15
  2200. full avg10=0.20 avg60=3.00 avg300=4.95 total=25
  2201. Mode: 644
  2202. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  2203. Path: fixtures/proc/schedstat
  2204. Lines: 6
  2205. version 15
  2206. timestamp 15819019232
  2207. cpu0 498494191 0 3533438552 2553969831 3853684107 2465731542 2045936778163039 343796328169361 4767485306
  2208. domain0 00000000,00000003 212499247 210112015 1861015 1860405436 536440 369895 32599 210079416 25368550 24241256 384652 927363878 807233 6366 1647 24239609 2122447165 1886868564 121112060 2848625533 125678146 241025 1032026 1885836538 2545 12 2533 0 0 0 0 0 0 1387952561 21076581 0
  2209. cpu1 518377256 0 4155211005 2778589869 10466382 2867629021 1904686152592476 364107263788241 5145567945
  2210. domain0 00000000,00000003 217653037 215526982 1577949 1580427380 557469 393576 28538 215498444 28721913 27662819 371153 870843407 745912 5523 1639 27661180 2331056874 2107732788 111442342 652402556 123615235 196159 1045245 2106687543 2400 3 2397 0 0 0 0 0 0 1437804657 26220076 0
  2211. Mode: 644
  2212. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  2213. Path: fixtures/proc/self
  2214. SymlinkTo: 26231
  2215. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  2216. Path: fixtures/proc/slabinfo
  2217. Lines: 302
  2218. slabinfo - version: 2.1
  2219. # name <active_objs> <num_objs> <objsize> <objperslab> <pagesperslab> : tunables <limit> <batchcount> <sharedfactor> : slabdata <active_slabs> <num_slabs> <sharedavail>
  2220. pid_3 375 532 576 28 4 : tunables 0 0 0 : slabdata 19 19 0
  2221. pid_2 3 28 576 28 4 : tunables 0 0 0 : slabdata 1 1 0
  2222. nvidia_p2p_page_cache 0 0 368 22 2 : tunables 0 0 0 : slabdata 0 0 0
  2223. nvidia_pte_cache 9022 9152 368 22 2 : tunables 0 0 0 : slabdata 416 416 0
  2224. nvidia_stack_cache 321 326 12624 2 8 : tunables 0 0 0 : slabdata 163 163 0
  2225. kvm_async_pf 0 0 472 34 4 : tunables 0 0 0 : slabdata 0 0 0
  2226. kvm_vcpu 0 0 15552 2 8 : tunables 0 0 0 : slabdata 0 0 0
  2227. kvm_mmu_page_header 0 0 504 32 4 : tunables 0 0 0 : slabdata 0 0 0
  2228. pte_list_desc 0 0 368 22 2 : tunables 0 0 0 : slabdata 0 0 0
  2229. x86_emulator 0 0 3024 10 8 : tunables 0 0 0 : slabdata 0 0 0
  2230. x86_fpu 0 0 4608 7 8 : tunables 0 0 0 : slabdata 0 0 0
  2231. iwl_cmd_pool:0000:04:00.0 0 128 512 32 4 : tunables 0 0 0 : slabdata 4 4 0
  2232. ext4_groupinfo_4k 3719 3740 480 34 4 : tunables 0 0 0 : slabdata 110 110 0
  2233. bio-6 32 75 640 25 4 : tunables 0 0 0 : slabdata 3 3 0
  2234. bio-5 16 48 1344 24 8 : tunables 0 0 0 : slabdata 2 2 0
  2235. bio-4 17 92 1408 23 8 : tunables 0 0 0 : slabdata 4 4 0
  2236. fat_inode_cache 0 0 1056 31 8 : tunables 0 0 0 : slabdata 0 0 0
  2237. fat_cache 0 0 368 22 2 : tunables 0 0 0 : slabdata 0 0 0
  2238. ovl_aio_req 0 0 512 32 4 : tunables 0 0 0 : slabdata 0 0 0
  2239. ovl_inode 0 0 1000 32 8 : tunables 0 0 0 : slabdata 0 0 0
  2240. squashfs_inode_cache 0 0 1088 30 8 : tunables 0 0 0 : slabdata 0 0 0
  2241. fuse_request 0 0 472 34 4 : tunables 0 0 0 : slabdata 0 0 0
  2242. fuse_inode 0 0 1152 28 8 : tunables 0 0 0 : slabdata 0 0 0
  2243. xfs_dqtrx 0 0 864 37 8 : tunables 0 0 0 : slabdata 0 0 0
  2244. xfs_dquot 0 0 832 39 8 : tunables 0 0 0 : slabdata 0 0 0
  2245. xfs_buf 0 0 768 21 4 : tunables 0 0 0 : slabdata 0 0 0
  2246. xfs_bui_item 0 0 544 30 4 : tunables 0 0 0 : slabdata 0 0 0
  2247. xfs_bud_item 0 0 512 32 4 : tunables 0 0 0 : slabdata 0 0 0
  2248. xfs_cui_item 0 0 768 21 4 : tunables 0 0 0 : slabdata 0 0 0
  2249. xfs_cud_item 0 0 512 32 4 : tunables 0 0 0 : slabdata 0 0 0
  2250. xfs_rui_item 0 0 1024 32 8 : tunables 0 0 0 : slabdata 0 0 0
  2251. xfs_rud_item 0 0 512 32 4 : tunables 0 0 0 : slabdata 0 0 0
  2252. xfs_icr 0 0 520 31 4 : tunables 0 0 0 : slabdata 0 0 0
  2253. xfs_ili 0 0 528 31 4 : tunables 0 0 0 : slabdata 0 0 0
  2254. xfs_inode 0 0 1344 24 8 : tunables 0 0 0 : slabdata 0 0 0
  2255. xfs_efi_item 0 0 768 21 4 : tunables 0 0 0 : slabdata 0 0 0
  2256. xfs_efd_item 0 0 776 21 4 : tunables 0 0 0 : slabdata 0 0 0
  2257. xfs_buf_item 0 0 608 26 4 : tunables 0 0 0 : slabdata 0 0 0
  2258. xf_trans 0 0 568 28 4 : tunables 0 0 0 : slabdata 0 0 0
  2259. xfs_ifork 0 0 376 21 2 : tunables 0 0 0 : slabdata 0 0 0
  2260. xfs_da_state 0 0 816 20 4 : tunables 0 0 0 : slabdata 0 0 0
  2261. xfs_btree_cur 0 0 560 29 4 : tunables 0 0 0 : slabdata 0 0 0
  2262. xfs_bmap_free_item 0 0 400 20 2 : tunables 0 0 0 : slabdata 0 0 0
  2263. xfs_log_ticket 0 0 520 31 4 : tunables 0 0 0 : slabdata 0 0 0
  2264. nfs_direct_cache 0 0 560 29 4 : tunables 0 0 0 : slabdata 0 0 0
  2265. nfs_commit_data 4 28 1152 28 8 : tunables 0 0 0 : slabdata 1 1 0
  2266. nfs_write_data 32 50 1280 25 8 : tunables 0 0 0 : slabdata 2 2 0
  2267. nfs_read_data 0 0 1280 25 8 : tunables 0 0 0 : slabdata 0 0 0
  2268. nfs_inode_cache 0 0 1408 23 8 : tunables 0 0 0 : slabdata 0 0 0
  2269. nfs_page 0 0 512 32 4 : tunables 0 0 0 : slabdata 0 0 0
  2270. rpc_inode_cache 0 0 1024 32 8 : tunables 0 0 0 : slabdata 0 0 0
  2271. rpc_buffers 8 13 2496 13 8 : tunables 0 0 0 : slabdata 1 1 0
  2272. rpc_tasks 8 25 640 25 4 : tunables 0 0 0 : slabdata 1 1 0
  2273. fscache_cookie_jar 1 35 464 35 4 : tunables 0 0 0 : slabdata 1 1 0
  2274. jfs_mp 32 35 464 35 4 : tunables 0 0 0 : slabdata 1 1 0
  2275. jfs_ip 0 0 1592 20 8 : tunables 0 0 0 : slabdata 0 0 0
  2276. reiser_inode_cache 0 0 1096 29 8 : tunables 0 0 0 : slabdata 0 0 0
  2277. btrfs_end_io_wq 0 0 464 35 4 : tunables 0 0 0 : slabdata 0 0 0
  2278. btrfs_prelim_ref 0 0 424 38 4 : tunables 0 0 0 : slabdata 0 0 0
  2279. btrfs_delayed_extent_op 0 0 368 22 2 : tunables 0 0 0 : slabdata 0 0 0
  2280. btrfs_delayed_data_ref 0 0 448 36 4 : tunables 0 0 0 : slabdata 0 0 0
  2281. btrfs_delayed_tree_ref 0 0 440 37 4 : tunables 0 0 0 : slabdata 0 0 0
  2282. btrfs_delayed_ref_head 0 0 480 34 4 : tunables 0 0 0 : slabdata 0 0 0
  2283. btrfs_inode_defrag 0 0 400 20 2 : tunables 0 0 0 : slabdata 0 0 0
  2284. btrfs_delayed_node 0 0 648 25 4 : tunables 0 0 0 : slabdata 0 0 0
  2285. btrfs_ordered_extent 0 0 752 21 4 : tunables 0 0 0 : slabdata 0 0 0
  2286. btrfs_extent_map 0 0 480 34 4 : tunables 0 0 0 : slabdata 0 0 0
  2287. btrfs_extent_state 0 0 416 39 4 : tunables 0 0 0 : slabdata 0 0 0
  2288. bio-3 35 92 704 23 4 : tunables 0 0 0 : slabdata 4 4 0
  2289. btrfs_extent_buffer 0 0 600 27 4 : tunables 0 0 0 : slabdata 0 0 0
  2290. btrfs_free_space_bitmap 0 0 12288 2 8 : tunables 0 0 0 : slabdata 0 0 0
  2291. btrfs_free_space 0 0 416 39 4 : tunables 0 0 0 : slabdata 0 0 0
  2292. btrfs_path 0 0 448 36 4 : tunables 0 0 0 : slabdata 0 0 0
  2293. btrfs_trans_handle 0 0 440 37 4 : tunables 0 0 0 : slabdata 0 0 0
  2294. btrfs_inode 0 0 1496 21 8 : tunables 0 0 0 : slabdata 0 0 0
  2295. ext4_inode_cache 84136 84755 1400 23 8 : tunables 0 0 0 : slabdata 3685 3685 0
  2296. ext4_free_data 22 80 392 20 2 : tunables 0 0 0 : slabdata 4 4 0
  2297. ext4_allocation_context 0 70 464 35 4 : tunables 0 0 0 : slabdata 2 2 0
  2298. ext4_prealloc_space 24 74 440 37 4 : tunables 0 0 0 : slabdata 2 2 0
  2299. ext4_system_zone 267 273 376 21 2 : tunables 0 0 0 : slabdata 13 13 0
  2300. ext4_io_end_vec 0 88 368 22 2 : tunables 0 0 0 : slabdata 4 4 0
  2301. ext4_io_end 0 80 400 20 2 : tunables 0 0 0 : slabdata 4 4 0
  2302. ext4_bio_post_read_ctx 128 147 384 21 2 : tunables 0 0 0 : slabdata 7 7 0
  2303. ext4_pending_reservation 0 0 368 22 2 : tunables 0 0 0 : slabdata 0 0 0
  2304. ext4_extent_status 79351 79422 376 21 2 : tunables 0 0 0 : slabdata 3782 3782 0
  2305. jbd2_transaction_s 44 100 640 25 4 : tunables 0 0 0 : slabdata 4 4 0
  2306. jbd2_inode 6785 6840 400 20 2 : tunables 0 0 0 : slabdata 342 342 0
  2307. jbd2_journal_handle 0 80 392 20 2 : tunables 0 0 0 : slabdata 4 4 0
  2308. jbd2_journal_head 824 1944 448 36 4 : tunables 0 0 0 : slabdata 54 54 0
  2309. jbd2_revoke_table_s 4 23 352 23 2 : tunables 0 0 0 : slabdata 1 1 0
  2310. jbd2_revoke_record_s 0 156 416 39 4 : tunables 0 0 0 : slabdata 4 4 0
  2311. ext2_inode_cache 0 0 1144 28 8 : tunables 0 0 0 : slabdata 0 0 0
  2312. mbcache 0 0 392 20 2 : tunables 0 0 0 : slabdata 0 0 0
  2313. dm_thin_new_mapping 0 152 424 38 4 : tunables 0 0 0 : slabdata 4 4 0
  2314. dm_snap_pending_exception 0 0 464 35 4 : tunables 0 0 0 : slabdata 0 0 0
  2315. dm_exception 0 0 368 22 2 : tunables 0 0 0 : slabdata 0 0 0
  2316. dm_dirty_log_flush_entry 0 0 368 22 2 : tunables 0 0 0 : slabdata 0 0 0
  2317. dm_bio_prison_cell_v2 0 0 432 37 4 : tunables 0 0 0 : slabdata 0 0 0
  2318. dm_bio_prison_cell 0 148 432 37 4 : tunables 0 0 0 : slabdata 4 4 0
  2319. kcopyd_job 0 8 3648 8 8 : tunables 0 0 0 : slabdata 1 1 0
  2320. io 0 32 512 32 4 : tunables 0 0 0 : slabdata 1 1 0
  2321. dm_uevent 0 0 3224 10 8 : tunables 0 0 0 : slabdata 0 0 0
  2322. dax_cache 1 28 1152 28 8 : tunables 0 0 0 : slabdata 1 1 0
  2323. aic94xx_ascb 0 0 576 28 4 : tunables 0 0 0 : slabdata 0 0 0
  2324. aic94xx_dma_token 0 0 384 21 2 : tunables 0 0 0 : slabdata 0 0 0
  2325. asd_sas_event 0 0 512 32 4 : tunables 0 0 0 : slabdata 0 0 0
  2326. sas_task 0 0 704 23 4 : tunables 0 0 0 : slabdata 0 0 0
  2327. qla2xxx_srbs 0 0 832 39 8 : tunables 0 0 0 : slabdata 0 0 0
  2328. sd_ext_cdb 2 22 368 22 2 : tunables 0 0 0 : slabdata 1 1 0
  2329. scsi_sense_cache 258 288 512 32 4 : tunables 0 0 0 : slabdata 9 9 0
  2330. virtio_scsi_cmd 64 75 640 25 4 : tunables 0 0 0 : slabdata 3 3 0
  2331. L2TP/IPv6 0 0 1536 21 8 : tunables 0 0 0 : slabdata 0 0 0
  2332. L2TP/IP 0 0 1408 23 8 : tunables 0 0 0 : slabdata 0 0 0
  2333. ip6-frags 0 0 520 31 4 : tunables 0 0 0 : slabdata 0 0 0
  2334. fib6_nodes 5 32 512 32 4 : tunables 0 0 0 : slabdata 1 1 0
  2335. ip6_dst_cache 4 25 640 25 4 : tunables 0 0 0 : slabdata 1 1 0
  2336. ip6_mrt_cache 0 0 576 28 4 : tunables 0 0 0 : slabdata 0 0 0
  2337. PINGv6 0 0 1600 20 8 : tunables 0 0 0 : slabdata 0 0 0
  2338. RAWv6 25 40 1600 20 8 : tunables 0 0 0 : slabdata 2 2 0
  2339. UDPLITEv6 0 0 1728 18 8 : tunables 0 0 0 : slabdata 0 0 0
  2340. UDPv6 3 54 1728 18 8 : tunables 0 0 0 : slabdata 3 3 0
  2341. tw_sock_TCPv6 0 0 576 28 4 : tunables 0 0 0 : slabdata 0 0 0
  2342. request_sock_TCPv6 0 0 632 25 4 : tunables 0 0 0 : slabdata 0 0 0
  2343. TCPv6 0 33 2752 11 8 : tunables 0 0 0 : slabdata 3 3 0
  2344. uhci_urb_priv 0 0 392 20 2 : tunables 0 0 0 : slabdata 0 0 0
  2345. sgpool-128 2 14 4544 7 8 : tunables 0 0 0 : slabdata 2 2 0
  2346. sgpool-64 2 13 2496 13 8 : tunables 0 0 0 : slabdata 1 1 0
  2347. sgpool-32 2 44 1472 22 8 : tunables 0 0 0 : slabdata 2 2 0
  2348. sgpool-16 2 68 960 34 8 : tunables 0 0 0 : slabdata 2 2 0
  2349. sgpool-8 2 46 704 23 4 : tunables 0 0 0 : slabdata 2 2 0
  2350. btree_node 0 0 576 28 4 : tunables 0 0 0 : slabdata 0 0 0
  2351. bfq_io_cq 0 0 488 33 4 : tunables 0 0 0 : slabdata 0 0 0
  2352. bfq_queue 0 0 848 38 8 : tunables 0 0 0 : slabdata 0 0 0
  2353. mqueue_inode_cache 1 24 1344 24 8 : tunables 0 0 0 : slabdata 1 1 0
  2354. isofs_inode_cache 0 0 968 33 8 : tunables 0 0 0 : slabdata 0 0 0
  2355. io_kiocb 0 0 640 25 4 : tunables 0 0 0 : slabdata 0 0 0
  2356. kioctx 0 30 1088 30 8 : tunables 0 0 0 : slabdata 1 1 0
  2357. aio_kiocb 0 28 576 28 4 : tunables 0 0 0 : slabdata 1 1 0
  2358. userfaultfd_ctx_cache 0 0 576 28 4 : tunables 0 0 0 : slabdata 0 0 0
  2359. fanotify_path_event 0 0 392 20 2 : tunables 0 0 0 : slabdata 0 0 0
  2360. fanotify_fid_event 0 0 400 20 2 : tunables 0 0 0 : slabdata 0 0 0
  2361. fsnotify_mark 0 0 408 20 2 : tunables 0 0 0 : slabdata 0 0 0
  2362. dnotify_mark 0 0 416 39 4 : tunables 0 0 0 : slabdata 0 0 0
  2363. dnotify_struct 0 0 368 22 2 : tunables 0 0 0 : slabdata 0 0 0
  2364. dio 0 0 1088 30 8 : tunables 0 0 0 : slabdata 0 0 0
  2365. bio-2 4 25 640 25 4 : tunables 0 0 0 : slabdata 1 1 0
  2366. fasync_cache 0 0 384 21 2 : tunables 0 0 0 : slabdata 0 0 0
  2367. audit_tree_mark 0 0 416 39 4 : tunables 0 0 0 : slabdata 0 0 0
  2368. pid_namespace 30 34 480 34 4 : tunables 0 0 0 : slabdata 1 1 0
  2369. posix_timers_cache 0 27 592 27 4 : tunables 0 0 0 : slabdata 1 1 0
  2370. iommu_devinfo 24 32 512 32 4 : tunables 0 0 0 : slabdata 1 1 0
  2371. iommu_domain 10 10 3264 10 8 : tunables 0 0 0 : slabdata 1 1 0
  2372. iommu_iova 8682 8748 448 36 4 : tunables 0 0 0 : slabdata 243 243 0
  2373. UNIX 529 814 1472 22 8 : tunables 0 0 0 : slabdata 37 37 0
  2374. ip4-frags 0 0 536 30 4 : tunables 0 0 0 : slabdata 0 0 0
  2375. ip_mrt_cache 0 0 576 28 4 : tunables 0 0 0 : slabdata 0 0 0
  2376. UDP-Lite 0 0 1536 21 8 : tunables 0 0 0 : slabdata 0 0 0
  2377. tcp_bind_bucket 7 128 512 32 4 : tunables 0 0 0 : slabdata 4 4 0
  2378. inet_peer_cache 0 0 576 28 4 : tunables 0 0 0 : slabdata 0 0 0
  2379. xfrm_dst_cache 0 0 704 23 4 : tunables 0 0 0 : slabdata 0 0 0
  2380. xfrm_state 0 0 1152 28 8 : tunables 0 0 0 : slabdata 0 0 0
  2381. ip_fib_trie 7 21 384 21 2 : tunables 0 0 0 : slabdata 1 1 0
  2382. ip_fib_alias 9 20 392 20 2 : tunables 0 0 0 : slabdata 1 1 0
  2383. ip_dst_cache 27 84 576 28 4 : tunables 0 0 0 : slabdata 3 3 0
  2384. PING 0 0 1408 23 8 : tunables 0 0 0 : slabdata 0 0 0
  2385. RAW 32 46 1408 23 8 : tunables 0 0 0 : slabdata 2 2 0
  2386. UDP 11 168 1536 21 8 : tunables 0 0 0 : slabdata 8 8 0
  2387. tw_sock_TCP 1 56 576 28 4 : tunables 0 0 0 : slabdata 2 2 0
  2388. request_sock_TCP 0 25 632 25 4 : tunables 0 0 0 : slabdata 1 1 0
  2389. TCP 10 60 2624 12 8 : tunables 0 0 0 : slabdata 5 5 0
  2390. hugetlbfs_inode_cache 2 35 928 35 8 : tunables 0 0 0 : slabdata 1 1 0
  2391. dquot 0 0 640 25 4 : tunables 0 0 0 : slabdata 0 0 0
  2392. bio-1 32 46 704 23 4 : tunables 0 0 0 : slabdata 2 2 0
  2393. eventpoll_pwq 409 600 408 20 2 : tunables 0 0 0 : slabdata 30 30 0
  2394. eventpoll_epi 408 672 576 28 4 : tunables 0 0 0 : slabdata 24 24 0
  2395. inotify_inode_mark 58 195 416 39 4 : tunables 0 0 0 : slabdata 5 5 0
  2396. scsi_data_buffer 0 0 360 22 2 : tunables 0 0 0 : slabdata 0 0 0
  2397. bio_crypt_ctx 128 147 376 21 2 : tunables 0 0 0 : slabdata 7 7 0
  2398. request_queue 29 39 2408 13 8 : tunables 0 0 0 : slabdata 3 3 0
  2399. blkdev_ioc 81 148 440 37 4 : tunables 0 0 0 : slabdata 4 4 0
  2400. bio-0 125 200 640 25 4 : tunables 0 0 0 : slabdata 8 8 0
  2401. biovec-max 166 196 4544 7 8 : tunables 0 0 0 : slabdata 28 28 0
  2402. biovec-128 0 52 2496 13 8 : tunables 0 0 0 : slabdata 4 4 0
  2403. biovec-64 0 88 1472 22 8 : tunables 0 0 0 : slabdata 4 4 0
  2404. biovec-16 0 92 704 23 4 : tunables 0 0 0 : slabdata 4 4 0
  2405. bio_integrity_payload 4 28 576 28 4 : tunables 0 0 0 : slabdata 1 1 0
  2406. khugepaged_mm_slot 59 180 448 36 4 : tunables 0 0 0 : slabdata 5 5 0
  2407. ksm_mm_slot 0 0 384 21 2 : tunables 0 0 0 : slabdata 0 0 0
  2408. ksm_stable_node 0 0 400 20 2 : tunables 0 0 0 : slabdata 0 0 0
  2409. ksm_rmap_item 0 0 400 20 2 : tunables 0 0 0 : slabdata 0 0 0
  2410. user_namespace 2 37 864 37 8 : tunables 0 0 0 : slabdata 1 1 0
  2411. uid_cache 5 28 576 28 4 : tunables 0 0 0 : slabdata 1 1 0
  2412. dmaengine-unmap-256 1 13 2496 13 8 : tunables 0 0 0 : slabdata 1 1 0
  2413. dmaengine-unmap-128 1 22 1472 22 8 : tunables 0 0 0 : slabdata 1 1 0
  2414. dmaengine-unmap-16 1 28 576 28 4 : tunables 0 0 0 : slabdata 1 1 0
  2415. dmaengine-unmap-2 1 36 448 36 4 : tunables 0 0 0 : slabdata 1 1 0
  2416. audit_buffer 0 22 360 22 2 : tunables 0 0 0 : slabdata 1 1 0
  2417. sock_inode_cache 663 1170 1216 26 8 : tunables 0 0 0 : slabdata 45 45 0
  2418. skbuff_ext_cache 0 0 576 28 4 : tunables 0 0 0 : slabdata 0 0 0
  2419. skbuff_fclone_cache 1 72 896 36 8 : tunables 0 0 0 : slabdata 2 2 0
  2420. skbuff_head_cache 3 650 640 25 4 : tunables 0 0 0 : slabdata 26 26 0
  2421. configfs_dir_cache 7 38 424 38 4 : tunables 0 0 0 : slabdata 1 1 0
  2422. file_lock_cache 27 116 552 29 4 : tunables 0 0 0 : slabdata 4 4 0
  2423. file_lock_ctx 106 120 392 20 2 : tunables 0 0 0 : slabdata 6 6 0
  2424. fsnotify_mark_connector 52 66 368 22 2 : tunables 0 0 0 : slabdata 3 3 0
  2425. net_namespace 1 6 5312 6 8 : tunables 0 0 0 : slabdata 1 1 0
  2426. task_delay_info 784 1560 416 39 4 : tunables 0 0 0 : slabdata 40 40 0
  2427. taskstats 45 92 688 23 4 : tunables 0 0 0 : slabdata 4 4 0
  2428. proc_dir_entry 678 682 528 31 4 : tunables 0 0 0 : slabdata 22 22 0
  2429. pde_opener 0 189 376 21 2 : tunables 0 0 0 : slabdata 9 9 0
  2430. proc_inode_cache 7150 8250 992 33 8 : tunables 0 0 0 : slabdata 250 250 0
  2431. seq_file 60 735 456 35 4 : tunables 0 0 0 : slabdata 21 21 0
  2432. sigqueue 0 156 416 39 4 : tunables 0 0 0 : slabdata 4 4 0
  2433. bdev_cache 36 78 1216 26 8 : tunables 0 0 0 : slabdata 3 3 0
  2434. shmem_inode_cache 1599 2208 1016 32 8 : tunables 0 0 0 : slabdata 69 69 0
  2435. kernfs_iattrs_cache 1251 1254 424 38 4 : tunables 0 0 0 : slabdata 33 33 0
  2436. kernfs_node_cache 52898 52920 464 35 4 : tunables 0 0 0 : slabdata 1512 1512 0
  2437. mnt_cache 42 46 704 23 4 : tunables 0 0 0 : slabdata 2 2 0
  2438. filp 4314 6371 704 23 4 : tunables 0 0 0 : slabdata 277 277 0
  2439. inode_cache 28695 29505 920 35 8 : tunables 0 0 0 : slabdata 843 843 0
  2440. dentry 166069 169074 528 31 4 : tunables 0 0 0 : slabdata 5454 5454 0
  2441. names_cache 0 35 4544 7 8 : tunables 0 0 0 : slabdata 5 5 0
  2442. hashtab_node 0 0 360 22 2 : tunables 0 0 0 : slabdata 0 0 0
  2443. ebitmap_node 0 0 400 20 2 : tunables 0 0 0 : slabdata 0 0 0
  2444. avtab_extended_perms 0 0 368 22 2 : tunables 0 0 0 : slabdata 0 0 0
  2445. avtab_node 0 0 360 22 2 : tunables 0 0 0 : slabdata 0 0 0
  2446. avc_xperms_data 0 0 368 22 2 : tunables 0 0 0 : slabdata 0 0 0
  2447. avc_xperms_decision_node 0 0 384 21 2 : tunables 0 0 0 : slabdata 0 0 0
  2448. avc_xperms_node 0 0 392 20 2 : tunables 0 0 0 : slabdata 0 0 0
  2449. avc_node 37 40 408 20 2 : tunables 0 0 0 : slabdata 2 2 0
  2450. iint_cache 0 0 448 36 4 : tunables 0 0 0 : slabdata 0 0 0
  2451. lsm_inode_cache 122284 122340 392 20 2 : tunables 0 0 0 : slabdata 6117 6117 0
  2452. lsm_file_cache 4266 4485 352 23 2 : tunables 0 0 0 : slabdata 195 195 0
  2453. key_jar 8 25 640 25 4 : tunables 0 0 0 : slabdata 1 1 0
  2454. buffer_head 255622 257076 440 37 4 : tunables 0 0 0 : slabdata 6948 6948 0
  2455. uts_namespace 0 0 776 21 4 : tunables 0 0 0 : slabdata 0 0 0
  2456. nsproxy 31 40 408 20 2 : tunables 0 0 0 : slabdata 2 2 0
  2457. vm_area_struct 39115 43214 528 31 4 : tunables 0 0 0 : slabdata 1394 1394 0
  2458. mm_struct 96 529 1408 23 8 : tunables 0 0 0 : slabdata 23 23 0
  2459. fs_cache 102 756 448 36 4 : tunables 0 0 0 : slabdata 21 21 0
  2460. files_cache 102 588 1152 28 8 : tunables 0 0 0 : slabdata 21 21 0
  2461. signal_cache 266 672 1536 21 8 : tunables 0 0 0 : slabdata 32 32 0
  2462. sighand_cache 266 507 2496 13 8 : tunables 0 0 0 : slabdata 39 39 0
  2463. task_struct 783 963 10240 3 8 : tunables 0 0 0 : slabdata 321 321 0
  2464. cred_jar 364 952 576 28 4 : tunables 0 0 0 : slabdata 34 34 0
  2465. anon_vma_chain 63907 67821 416 39 4 : tunables 0 0 0 : slabdata 1739 1739 0
  2466. anon_vma 25891 28899 416 39 4 : tunables 0 0 0 : slabdata 741 741 0
  2467. pid 408 992 512 32 4 : tunables 0 0 0 : slabdata 31 31 0
  2468. Acpi-Operand 6682 6740 408 20 2 : tunables 0 0 0 : slabdata 337 337 0
  2469. Acpi-ParseExt 0 39 416 39 4 : tunables 0 0 0 : slabdata 1 1 0
  2470. Acpi-Parse 0 80 392 20 2 : tunables 0 0 0 : slabdata 4 4 0
  2471. Acpi-State 0 78 416 39 4 : tunables 0 0 0 : slabdata 2 2 0
  2472. Acpi-Namespace 3911 3948 384 21 2 : tunables 0 0 0 : slabdata 188 188 0
  2473. trace_event_file 2638 2660 424 38 4 : tunables 0 0 0 : slabdata 70 70 0
  2474. ftrace_event_field 6592 6594 384 21 2 : tunables 0 0 0 : slabdata 314 314 0
  2475. pool_workqueue 41 64 1024 32 8 : tunables 0 0 0 : slabdata 2 2 0
  2476. radix_tree_node 21638 24045 912 35 8 : tunables 0 0 0 : slabdata 687 687 0
  2477. task_group 48 78 1216 26 8 : tunables 0 0 0 : slabdata 3 3 0
  2478. vmap_area 4411 4680 400 20 2 : tunables 0 0 0 : slabdata 234 234 0
  2479. dma-kmalloc-8k 0 0 24576 1 8 : tunables 0 0 0 : slabdata 0 0 0
  2480. dma-kmalloc-4k 0 0 12288 2 8 : tunables 0 0 0 : slabdata 0 0 0
  2481. dma-kmalloc-2k 0 0 6144 5 8 : tunables 0 0 0 : slabdata 0 0 0
  2482. dma-kmalloc-1k 0 0 3072 10 8 : tunables 0 0 0 : slabdata 0 0 0
  2483. dma-kmalloc-512 0 0 1536 21 8 : tunables 0 0 0 : slabdata 0 0 0
  2484. dma-kmalloc-256 0 0 1024 32 8 : tunables 0 0 0 : slabdata 0 0 0
  2485. dma-kmalloc-128 0 0 640 25 4 : tunables 0 0 0 : slabdata 0 0 0
  2486. dma-kmalloc-64 0 0 512 32 4 : tunables 0 0 0 : slabdata 0 0 0
  2487. dma-kmalloc-32 0 0 416 39 4 : tunables 0 0 0 : slabdata 0 0 0
  2488. dma-kmalloc-16 0 0 368 22 2 : tunables 0 0 0 : slabdata 0 0 0
  2489. dma-kmalloc-8 0 0 344 23 2 : tunables 0 0 0 : slabdata 0 0 0
  2490. dma-kmalloc-192 0 0 528 31 4 : tunables 0 0 0 : slabdata 0 0 0
  2491. dma-kmalloc-96 0 0 432 37 4 : tunables 0 0 0 : slabdata 0 0 0
  2492. kmalloc-rcl-8k 0 0 24576 1 8 : tunables 0 0 0 : slabdata 0 0 0
  2493. kmalloc-rcl-4k 0 0 12288 2 8 : tunables 0 0 0 : slabdata 0 0 0
  2494. kmalloc-rcl-2k 0 0 6144 5 8 : tunables 0 0 0 : slabdata 0 0 0
  2495. kmalloc-rcl-1k 0 0 3072 10 8 : tunables 0 0 0 : slabdata 0 0 0
  2496. kmalloc-rcl-512 0 0 1536 21 8 : tunables 0 0 0 : slabdata 0 0 0
  2497. kmalloc-rcl-256 0 0 1024 32 8 : tunables 0 0 0 : slabdata 0 0 0
  2498. kmalloc-rcl-192 0 0 528 31 4 : tunables 0 0 0 : slabdata 0 0 0
  2499. kmalloc-rcl-128 31 75 640 25 4 : tunables 0 0 0 : slabdata 3 3 0
  2500. kmalloc-rcl-96 3371 3626 432 37 4 : tunables 0 0 0 : slabdata 98 98 0
  2501. kmalloc-rcl-64 2080 2272 512 32 4 : tunables 0 0 0 : slabdata 71 71 0
  2502. kmalloc-rcl-32 0 0 416 39 4 : tunables 0 0 0 : slabdata 0 0 0
  2503. kmalloc-rcl-16 0 0 368 22 2 : tunables 0 0 0 : slabdata 0 0 0
  2504. kmalloc-rcl-8 0 0 344 23 2 : tunables 0 0 0 : slabdata 0 0 0
  2505. kmalloc-8k 133 140 24576 1 8 : tunables 0 0 0 : slabdata 140 140 0
  2506. kmalloc-4k 403 444 12288 2 8 : tunables 0 0 0 : slabdata 222 222 0
  2507. kmalloc-2k 2391 2585 6144 5 8 : tunables 0 0 0 : slabdata 517 517 0
  2508. kmalloc-1k 2163 2420 3072 10 8 : tunables 0 0 0 : slabdata 242 242 0
  2509. kmalloc-512 2972 3633 1536 21 8 : tunables 0 0 0 : slabdata 173 173 0
  2510. kmalloc-256 1841 1856 1024 32 8 : tunables 0 0 0 : slabdata 58 58 0
  2511. kmalloc-192 2165 2914 528 31 4 : tunables 0 0 0 : slabdata 94 94 0
  2512. kmalloc-128 1137 1175 640 25 4 : tunables 0 0 0 : slabdata 47 47 0
  2513. kmalloc-96 1925 2590 432 37 4 : tunables 0 0 0 : slabdata 70 70 0
  2514. kmalloc-64 9433 10688 512 32 4 : tunables 0 0 0 : slabdata 334 334 0
  2515. kmalloc-32 9098 10062 416 39 4 : tunables 0 0 0 : slabdata 258 258 0
  2516. kmalloc-16 10914 10956 368 22 2 : tunables 0 0 0 : slabdata 498 498 0
  2517. kmalloc-8 7576 7705 344 23 2 : tunables 0 0 0 : slabdata 335 335 0
  2518. kmem_cache_node 904 928 512 32 4 : tunables 0 0 0 : slabdata 29 29 0
  2519. kmem_cache 904 936 832 39 8 : tunables 0 0 0 : slabdata 24 24 0
  2520. Mode: 644
  2521. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  2522. Path: fixtures/proc/stat
  2523. Lines: 16
  2524. cpu 301854 612 111922 8979004 3552 2 3944 0 0 0
  2525. cpu0 44490 19 21045 1087069 220 1 3410 0 0 0
  2526. cpu1 47869 23 16474 1110787 591 0 46 0 0 0
  2527. cpu2 46504 36 15916 1112321 441 0 326 0 0 0
  2528. cpu3 47054 102 15683 1113230 533 0 60 0 0 0
  2529. cpu4 28413 25 10776 1140321 217 0 8 0 0 0
  2530. cpu5 29271 101 11586 1136270 672 0 30 0 0 0
  2531. cpu6 29152 36 10276 1139721 319 0 29 0 0 0
  2532. cpu7 29098 268 10164 1139282 555 0 31 0 0 0
  2533. intr 8885917 17 0 0 0 0 0 0 0 1 79281 0 0 0 0 0 0 0 231237 0 0 0 0 250586 103 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 223424 190745 13 906 1283803 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
  2534. ctxt 38014093
  2535. btime 1418183276
  2536. processes 26442
  2537. procs_running 2
  2538. procs_blocked 1
  2539. softirq 5057579 250191 1481983 1647 211099 186066 0 1783454 622196 12499 508444
  2540. Mode: 644
  2541. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  2542. Path: fixtures/proc/swaps
  2543. Lines: 2
  2544. Filename Type Size Used Priority
  2545. /dev/dm-2 partition 131068 176 -2
  2546. Mode: 444
  2547. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  2548. Directory: fixtures/proc/symlinktargets
  2549. Mode: 755
  2550. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  2551. Path: fixtures/proc/symlinktargets/README
  2552. Lines: 2
  2553. This directory contains some empty files that are the symlinks the files in the "fd" directory point to.
  2554. They are otherwise ignored by the tests
  2555. Mode: 644
  2556. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  2557. Path: fixtures/proc/symlinktargets/abc
  2558. Lines: 0
  2559. Mode: 644
  2560. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  2561. Path: fixtures/proc/symlinktargets/def
  2562. Lines: 0
  2563. Mode: 644
  2564. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  2565. Path: fixtures/proc/symlinktargets/ghi
  2566. Lines: 0
  2567. Mode: 644
  2568. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  2569. Path: fixtures/proc/symlinktargets/uvw
  2570. Lines: 0
  2571. Mode: 644
  2572. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  2573. Path: fixtures/proc/symlinktargets/xyz
  2574. Lines: 0
  2575. Mode: 644
  2576. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  2577. Directory: fixtures/proc/sys
  2578. Mode: 775
  2579. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  2580. Directory: fixtures/proc/sys/kernel
  2581. Mode: 775
  2582. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  2583. Directory: fixtures/proc/sys/kernel/random
  2584. Mode: 755
  2585. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  2586. Path: fixtures/proc/sys/kernel/random/entropy_avail
  2587. Lines: 1
  2588. 3943
  2589. Mode: 644
  2590. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  2591. Path: fixtures/proc/sys/kernel/random/poolsize
  2592. Lines: 1
  2593. 4096
  2594. Mode: 644
  2595. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  2596. Path: fixtures/proc/sys/kernel/random/urandom_min_reseed_secs
  2597. Lines: 1
  2598. 60
  2599. Mode: 644
  2600. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  2601. Path: fixtures/proc/sys/kernel/random/write_wakeup_threshold
  2602. Lines: 1
  2603. 3072
  2604. Mode: 644
  2605. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  2606. Directory: fixtures/proc/sys/vm
  2607. Mode: 775
  2608. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  2609. Path: fixtures/proc/sys/vm/admin_reserve_kbytes
  2610. Lines: 1
  2611. 8192
  2612. Mode: 644
  2613. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  2614. Path: fixtures/proc/sys/vm/block_dump
  2615. Lines: 1
  2616. 0
  2617. Mode: 644
  2618. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  2619. Path: fixtures/proc/sys/vm/compact_unevictable_allowed
  2620. Lines: 1
  2621. 1
  2622. Mode: 644
  2623. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  2624. Path: fixtures/proc/sys/vm/dirty_background_bytes
  2625. Lines: 1
  2626. 0
  2627. Mode: 644
  2628. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  2629. Path: fixtures/proc/sys/vm/dirty_background_ratio
  2630. Lines: 1
  2631. 10
  2632. Mode: 644
  2633. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  2634. Path: fixtures/proc/sys/vm/dirty_bytes
  2635. Lines: 1
  2636. 0
  2637. Mode: 644
  2638. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  2639. Path: fixtures/proc/sys/vm/dirty_expire_centisecs
  2640. Lines: 1
  2641. 3000
  2642. Mode: 644
  2643. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  2644. Path: fixtures/proc/sys/vm/dirty_ratio
  2645. Lines: 1
  2646. 20
  2647. Mode: 644
  2648. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  2649. Path: fixtures/proc/sys/vm/dirty_writeback_centisecs
  2650. Lines: 1
  2651. 500
  2652. Mode: 644
  2653. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  2654. Path: fixtures/proc/sys/vm/dirtytime_expire_seconds
  2655. Lines: 1
  2656. 43200
  2657. Mode: 644
  2658. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  2659. Path: fixtures/proc/sys/vm/drop_caches
  2660. Lines: 1
  2661. 0
  2662. Mode: 644
  2663. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  2664. Path: fixtures/proc/sys/vm/extfrag_threshold
  2665. Lines: 1
  2666. 500
  2667. Mode: 644
  2668. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  2669. Path: fixtures/proc/sys/vm/hugetlb_shm_group
  2670. Lines: 1
  2671. 0
  2672. Mode: 644
  2673. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  2674. Path: fixtures/proc/sys/vm/laptop_mode
  2675. Lines: 1
  2676. 5
  2677. Mode: 644
  2678. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  2679. Path: fixtures/proc/sys/vm/legacy_va_layout
  2680. Lines: 1
  2681. 0
  2682. Mode: 644
  2683. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  2684. Path: fixtures/proc/sys/vm/lowmem_reserve_ratio
  2685. Lines: 1
  2686. 256 256 32 0 0
  2687. Mode: 644
  2688. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  2689. Path: fixtures/proc/sys/vm/max_map_count
  2690. Lines: 1
  2691. 65530
  2692. Mode: 644
  2693. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  2694. Path: fixtures/proc/sys/vm/memory_failure_early_kill
  2695. Lines: 1
  2696. 0
  2697. Mode: 644
  2698. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  2699. Path: fixtures/proc/sys/vm/memory_failure_recovery
  2700. Lines: 1
  2701. 1
  2702. Mode: 644
  2703. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  2704. Path: fixtures/proc/sys/vm/min_free_kbytes
  2705. Lines: 1
  2706. 67584
  2707. Mode: 644
  2708. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  2709. Path: fixtures/proc/sys/vm/min_slab_ratio
  2710. Lines: 1
  2711. 5
  2712. Mode: 644
  2713. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  2714. Path: fixtures/proc/sys/vm/min_unmapped_ratio
  2715. Lines: 1
  2716. 1
  2717. Mode: 644
  2718. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  2719. Path: fixtures/proc/sys/vm/mmap_min_addr
  2720. Lines: 1
  2721. 65536
  2722. Mode: 644
  2723. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  2724. Path: fixtures/proc/sys/vm/nr_hugepages
  2725. Lines: 1
  2726. 0
  2727. Mode: 644
  2728. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  2729. Path: fixtures/proc/sys/vm/nr_hugepages_mempolicy
  2730. Lines: 1
  2731. 0
  2732. Mode: 644
  2733. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  2734. Path: fixtures/proc/sys/vm/nr_overcommit_hugepages
  2735. Lines: 1
  2736. 0
  2737. Mode: 644
  2738. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  2739. Path: fixtures/proc/sys/vm/numa_stat
  2740. Lines: 1
  2741. 1
  2742. Mode: 644
  2743. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  2744. Path: fixtures/proc/sys/vm/numa_zonelist_order
  2745. Lines: 1
  2746. Node
  2747. Mode: 644
  2748. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  2749. Path: fixtures/proc/sys/vm/oom_dump_tasks
  2750. Lines: 1
  2751. 1
  2752. Mode: 644
  2753. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  2754. Path: fixtures/proc/sys/vm/oom_kill_allocating_task
  2755. Lines: 1
  2756. 0
  2757. Mode: 644
  2758. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  2759. Path: fixtures/proc/sys/vm/overcommit_kbytes
  2760. Lines: 1
  2761. 0
  2762. Mode: 644
  2763. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  2764. Path: fixtures/proc/sys/vm/overcommit_memory
  2765. Lines: 1
  2766. 0
  2767. Mode: 644
  2768. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  2769. Path: fixtures/proc/sys/vm/overcommit_ratio
  2770. Lines: 1
  2771. 50
  2772. Mode: 644
  2773. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  2774. Path: fixtures/proc/sys/vm/page-cluster
  2775. Lines: 1
  2776. 3
  2777. Mode: 644
  2778. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  2779. Path: fixtures/proc/sys/vm/panic_on_oom
  2780. Lines: 1
  2781. 0
  2782. Mode: 644
  2783. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  2784. Path: fixtures/proc/sys/vm/percpu_pagelist_fraction
  2785. Lines: 1
  2786. 0
  2787. Mode: 644
  2788. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  2789. Path: fixtures/proc/sys/vm/stat_interval
  2790. Lines: 1
  2791. 1
  2792. Mode: 644
  2793. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  2794. Path: fixtures/proc/sys/vm/swappiness
  2795. Lines: 1
  2796. 60
  2797. Mode: 644
  2798. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  2799. Path: fixtures/proc/sys/vm/user_reserve_kbytes
  2800. Lines: 1
  2801. 131072
  2802. Mode: 644
  2803. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  2804. Path: fixtures/proc/sys/vm/vfs_cache_pressure
  2805. Lines: 1
  2806. 100
  2807. Mode: 644
  2808. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  2809. Path: fixtures/proc/sys/vm/watermark_boost_factor
  2810. Lines: 1
  2811. 15000
  2812. Mode: 644
  2813. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  2814. Path: fixtures/proc/sys/vm/watermark_scale_factor
  2815. Lines: 1
  2816. 10
  2817. Mode: 644
  2818. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  2819. Path: fixtures/proc/sys/vm/zone_reclaim_mode
  2820. Lines: 1
  2821. 0
  2822. Mode: 644
  2823. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  2824. Path: fixtures/proc/zoneinfo
  2825. Lines: 262
  2826. Node 0, zone DMA
  2827. per-node stats
  2828. nr_inactive_anon 230981
  2829. nr_active_anon 547580
  2830. nr_inactive_file 316904
  2831. nr_active_file 346282
  2832. nr_unevictable 115467
  2833. nr_slab_reclaimable 131220
  2834. nr_slab_unreclaimable 47320
  2835. nr_isolated_anon 0
  2836. nr_isolated_file 0
  2837. workingset_nodes 11627
  2838. workingset_refault 466886
  2839. workingset_activate 276925
  2840. workingset_restore 84055
  2841. workingset_nodereclaim 487
  2842. nr_anon_pages 795576
  2843. nr_mapped 215483
  2844. nr_file_pages 761874
  2845. nr_dirty 908
  2846. nr_writeback 0
  2847. nr_writeback_temp 0
  2848. nr_shmem 224925
  2849. nr_shmem_hugepages 0
  2850. nr_shmem_pmdmapped 0
  2851. nr_anon_transparent_hugepages 0
  2852. nr_unstable 0
  2853. nr_vmscan_write 12950
  2854. nr_vmscan_immediate_reclaim 3033
  2855. nr_dirtied 8007423
  2856. nr_written 7752121
  2857. nr_kernel_misc_reclaimable 0
  2858. pages free 3952
  2859. min 33
  2860. low 41
  2861. high 49
  2862. spanned 4095
  2863. present 3975
  2864. managed 3956
  2865. protection: (0, 2877, 7826, 7826, 7826)
  2866. nr_free_pages 3952
  2867. nr_zone_inactive_anon 0
  2868. nr_zone_active_anon 0
  2869. nr_zone_inactive_file 0
  2870. nr_zone_active_file 0
  2871. nr_zone_unevictable 0
  2872. nr_zone_write_pending 0
  2873. nr_mlock 0
  2874. nr_page_table_pages 0
  2875. nr_kernel_stack 0
  2876. nr_bounce 0
  2877. nr_zspages 0
  2878. nr_free_cma 0
  2879. numa_hit 1
  2880. numa_miss 0
  2881. numa_foreign 0
  2882. numa_interleave 0
  2883. numa_local 1
  2884. numa_other 0
  2885. pagesets
  2886. cpu: 0
  2887. count: 0
  2888. high: 0
  2889. batch: 1
  2890. vm stats threshold: 8
  2891. cpu: 1
  2892. count: 0
  2893. high: 0
  2894. batch: 1
  2895. vm stats threshold: 8
  2896. cpu: 2
  2897. count: 0
  2898. high: 0
  2899. batch: 1
  2900. vm stats threshold: 8
  2901. cpu: 3
  2902. count: 0
  2903. high: 0
  2904. batch: 1
  2905. vm stats threshold: 8
  2906. cpu: 4
  2907. count: 0
  2908. high: 0
  2909. batch: 1
  2910. vm stats threshold: 8
  2911. cpu: 5
  2912. count: 0
  2913. high: 0
  2914. batch: 1
  2915. vm stats threshold: 8
  2916. cpu: 6
  2917. count: 0
  2918. high: 0
  2919. batch: 1
  2920. vm stats threshold: 8
  2921. cpu: 7
  2922. count: 0
  2923. high: 0
  2924. batch: 1
  2925. vm stats threshold: 8
  2926. node_unreclaimable: 0
  2927. start_pfn: 1
  2928. Node 0, zone DMA32
  2929. pages free 204252
  2930. min 19510
  2931. low 21059
  2932. high 22608
  2933. spanned 1044480
  2934. present 759231
  2935. managed 742806
  2936. protection: (0, 0, 4949, 4949, 4949)
  2937. nr_free_pages 204252
  2938. nr_zone_inactive_anon 118558
  2939. nr_zone_active_anon 106598
  2940. nr_zone_inactive_file 75475
  2941. nr_zone_active_file 70293
  2942. nr_zone_unevictable 66195
  2943. nr_zone_write_pending 64
  2944. nr_mlock 4
  2945. nr_page_table_pages 1756
  2946. nr_kernel_stack 2208
  2947. nr_bounce 0
  2948. nr_zspages 0
  2949. nr_free_cma 0
  2950. numa_hit 113952967
  2951. numa_miss 0
  2952. numa_foreign 0
  2953. numa_interleave 0
  2954. numa_local 113952967
  2955. numa_other 0
  2956. pagesets
  2957. cpu: 0
  2958. count: 345
  2959. high: 378
  2960. batch: 63
  2961. vm stats threshold: 48
  2962. cpu: 1
  2963. count: 356
  2964. high: 378
  2965. batch: 63
  2966. vm stats threshold: 48
  2967. cpu: 2
  2968. count: 325
  2969. high: 378
  2970. batch: 63
  2971. vm stats threshold: 48
  2972. cpu: 3
  2973. count: 346
  2974. high: 378
  2975. batch: 63
  2976. vm stats threshold: 48
  2977. cpu: 4
  2978. count: 321
  2979. high: 378
  2980. batch: 63
  2981. vm stats threshold: 48
  2982. cpu: 5
  2983. count: 316
  2984. high: 378
  2985. batch: 63
  2986. vm stats threshold: 48
  2987. cpu: 6
  2988. count: 373
  2989. high: 378
  2990. batch: 63
  2991. vm stats threshold: 48
  2992. cpu: 7
  2993. count: 339
  2994. high: 378
  2995. batch: 63
  2996. vm stats threshold: 48
  2997. node_unreclaimable: 0
  2998. start_pfn: 4096
  2999. Node 0, zone Normal
  3000. pages free 18553
  3001. min 11176
  3002. low 13842
  3003. high 16508
  3004. spanned 1308160
  3005. present 1308160
  3006. managed 1268711
  3007. protection: (0, 0, 0, 0, 0)
  3008. nr_free_pages 18553
  3009. nr_zone_inactive_anon 112423
  3010. nr_zone_active_anon 440982
  3011. nr_zone_inactive_file 241429
  3012. nr_zone_active_file 275989
  3013. nr_zone_unevictable 49272
  3014. nr_zone_write_pending 844
  3015. nr_mlock 154
  3016. nr_page_table_pages 9750
  3017. nr_kernel_stack 15136
  3018. nr_bounce 0
  3019. nr_zspages 0
  3020. nr_free_cma 0
  3021. numa_hit 162718019
  3022. numa_miss 0
  3023. numa_foreign 0
  3024. numa_interleave 26812
  3025. numa_local 162718019
  3026. numa_other 0
  3027. pagesets
  3028. cpu: 0
  3029. count: 316
  3030. high: 378
  3031. batch: 63
  3032. vm stats threshold: 56
  3033. cpu: 1
  3034. count: 366
  3035. high: 378
  3036. batch: 63
  3037. vm stats threshold: 56
  3038. cpu: 2
  3039. count: 60
  3040. high: 378
  3041. batch: 63
  3042. vm stats threshold: 56
  3043. cpu: 3
  3044. count: 256
  3045. high: 378
  3046. batch: 63
  3047. vm stats threshold: 56
  3048. cpu: 4
  3049. count: 253
  3050. high: 378
  3051. batch: 63
  3052. vm stats threshold: 56
  3053. cpu: 5
  3054. count: 159
  3055. high: 378
  3056. batch: 63
  3057. vm stats threshold: 56
  3058. cpu: 6
  3059. count: 311
  3060. high: 378
  3061. batch: 63
  3062. vm stats threshold: 56
  3063. cpu: 7
  3064. count: 264
  3065. high: 378
  3066. batch: 63
  3067. vm stats threshold: 56
  3068. node_unreclaimable: 0
  3069. start_pfn: 1048576
  3070. Node 0, zone Movable
  3071. pages free 0
  3072. min 0
  3073. low 0
  3074. high 0
  3075. spanned 0
  3076. present 0
  3077. managed 0
  3078. protection: (0, 0, 0, 0, 0)
  3079. Node 0, zone Device
  3080. pages free 0
  3081. min 0
  3082. low 0
  3083. high 0
  3084. spanned 0
  3085. present 0
  3086. managed 0
  3087. protection: (0, 0, 0, 0, 0)
  3088. Mode: 444
  3089. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  3090. Directory: fixtures/sys
  3091. Mode: 755
  3092. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  3093. Directory: fixtures/sys/block
  3094. Mode: 775
  3095. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  3096. Directory: fixtures/sys/block/dm-0
  3097. Mode: 775
  3098. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  3099. Path: fixtures/sys/block/dm-0/stat
  3100. Lines: 1
  3101. 6447303 0 710266738 1529043 953216 0 31201176 4557464 0 796160 6088971
  3102. Mode: 664
  3103. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  3104. Directory: fixtures/sys/block/sda
  3105. Mode: 775
  3106. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  3107. Directory: fixtures/sys/block/sda/queue
  3108. Mode: 755
  3109. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  3110. Path: fixtures/sys/block/sda/queue/add_random
  3111. Lines: 1
  3112. 1
  3113. Mode: 644
  3114. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  3115. Path: fixtures/sys/block/sda/queue/chunk_sectors
  3116. Lines: 1
  3117. 0
  3118. Mode: 444
  3119. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  3120. Path: fixtures/sys/block/sda/queue/dax
  3121. Lines: 1
  3122. 0
  3123. Mode: 444
  3124. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  3125. Path: fixtures/sys/block/sda/queue/discard_granularity
  3126. Lines: 1
  3127. 0
  3128. Mode: 444
  3129. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  3130. Path: fixtures/sys/block/sda/queue/discard_max_bytes
  3131. Lines: 1
  3132. 0
  3133. Mode: 644
  3134. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  3135. Path: fixtures/sys/block/sda/queue/discard_max_hw_bytes
  3136. Lines: 1
  3137. 0
  3138. Mode: 444
  3139. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  3140. Path: fixtures/sys/block/sda/queue/discard_zeroes_data
  3141. Lines: 1
  3142. 0
  3143. Mode: 444
  3144. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  3145. Path: fixtures/sys/block/sda/queue/fua
  3146. Lines: 1
  3147. 0
  3148. Mode: 444
  3149. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  3150. Path: fixtures/sys/block/sda/queue/hw_sector_size
  3151. Lines: 1
  3152. 512
  3153. Mode: 444
  3154. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  3155. Path: fixtures/sys/block/sda/queue/io_poll
  3156. Lines: 1
  3157. 0
  3158. Mode: 644
  3159. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  3160. Path: fixtures/sys/block/sda/queue/io_poll_delay
  3161. Lines: 1
  3162. -1
  3163. Mode: 644
  3164. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  3165. Path: fixtures/sys/block/sda/queue/io_timeout
  3166. Lines: 1
  3167. 30000
  3168. Mode: 644
  3169. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  3170. Directory: fixtures/sys/block/sda/queue/iosched
  3171. Mode: 755
  3172. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  3173. Path: fixtures/sys/block/sda/queue/iosched/back_seek_max
  3174. Lines: 1
  3175. 16384
  3176. Mode: 644
  3177. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  3178. Path: fixtures/sys/block/sda/queue/iosched/back_seek_penalty
  3179. Lines: 1
  3180. 2
  3181. Mode: 644
  3182. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  3183. Path: fixtures/sys/block/sda/queue/iosched/fifo_expire_async
  3184. Lines: 1
  3185. 250
  3186. Mode: 644
  3187. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  3188. Path: fixtures/sys/block/sda/queue/iosched/fifo_expire_sync
  3189. Lines: 1
  3190. 125
  3191. Mode: 644
  3192. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  3193. Path: fixtures/sys/block/sda/queue/iosched/low_latency
  3194. Lines: 1
  3195. 1
  3196. Mode: 644
  3197. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  3198. Path: fixtures/sys/block/sda/queue/iosched/max_budget
  3199. Lines: 1
  3200. 0
  3201. Mode: 644
  3202. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  3203. Path: fixtures/sys/block/sda/queue/iosched/slice_idle
  3204. Lines: 1
  3205. 8
  3206. Mode: 644
  3207. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  3208. Path: fixtures/sys/block/sda/queue/iosched/slice_idle_us
  3209. Lines: 1
  3210. 8000
  3211. Mode: 644
  3212. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  3213. Path: fixtures/sys/block/sda/queue/iosched/strict_guarantees
  3214. Lines: 1
  3215. 0
  3216. Mode: 644
  3217. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  3218. Path: fixtures/sys/block/sda/queue/iosched/timeout_sync
  3219. Lines: 1
  3220. 125
  3221. Mode: 644
  3222. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  3223. Path: fixtures/sys/block/sda/queue/iostats
  3224. Lines: 1
  3225. 1
  3226. Mode: 644
  3227. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  3228. Path: fixtures/sys/block/sda/queue/logical_block_size
  3229. Lines: 1
  3230. 512
  3231. Mode: 444
  3232. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  3233. Path: fixtures/sys/block/sda/queue/max_discard_segments
  3234. Lines: 1
  3235. 1
  3236. Mode: 444
  3237. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  3238. Path: fixtures/sys/block/sda/queue/max_hw_sectors_kb
  3239. Lines: 1
  3240. 32767
  3241. Mode: 444
  3242. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  3243. Path: fixtures/sys/block/sda/queue/max_integrity_segments
  3244. Lines: 1
  3245. 0
  3246. Mode: 444
  3247. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  3248. Path: fixtures/sys/block/sda/queue/max_sectors_kb
  3249. Lines: 1
  3250. 1280
  3251. Mode: 644
  3252. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  3253. Path: fixtures/sys/block/sda/queue/max_segment_size
  3254. Lines: 1
  3255. 65536
  3256. Mode: 444
  3257. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  3258. Path: fixtures/sys/block/sda/queue/max_segments
  3259. Lines: 1
  3260. 168
  3261. Mode: 444
  3262. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  3263. Path: fixtures/sys/block/sda/queue/minimum_io_size
  3264. Lines: 1
  3265. 512
  3266. Mode: 444
  3267. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  3268. Path: fixtures/sys/block/sda/queue/nomerges
  3269. Lines: 1
  3270. 0
  3271. Mode: 644
  3272. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  3273. Path: fixtures/sys/block/sda/queue/nr_requests
  3274. Lines: 1
  3275. 64
  3276. Mode: 644
  3277. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  3278. Path: fixtures/sys/block/sda/queue/nr_zones
  3279. Lines: 1
  3280. 0
  3281. Mode: 444
  3282. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  3283. Path: fixtures/sys/block/sda/queue/optimal_io_size
  3284. Lines: 1
  3285. 0
  3286. Mode: 444
  3287. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  3288. Path: fixtures/sys/block/sda/queue/physical_block_size
  3289. Lines: 1
  3290. 512
  3291. Mode: 444
  3292. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  3293. Path: fixtures/sys/block/sda/queue/read_ahead_kb
  3294. Lines: 1
  3295. 128
  3296. Mode: 644
  3297. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  3298. Path: fixtures/sys/block/sda/queue/rotational
  3299. Lines: 1
  3300. 1
  3301. Mode: 644
  3302. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  3303. Path: fixtures/sys/block/sda/queue/rq_affinity
  3304. Lines: 1
  3305. 1
  3306. Mode: 644
  3307. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  3308. Path: fixtures/sys/block/sda/queue/scheduler
  3309. Lines: 1
  3310. mq-deadline kyber [bfq] none
  3311. Mode: 644
  3312. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  3313. Path: fixtures/sys/block/sda/queue/wbt_lat_usec
  3314. Lines: 1
  3315. 75000
  3316. Mode: 644
  3317. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  3318. Path: fixtures/sys/block/sda/queue/write_cache
  3319. Lines: 1
  3320. write back
  3321. Mode: 644
  3322. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  3323. Path: fixtures/sys/block/sda/queue/write_same_max_bytes
  3324. Lines: 1
  3325. 0
  3326. Mode: 444
  3327. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  3328. Path: fixtures/sys/block/sda/queue/write_zeroes_max_bytes
  3329. Lines: 1
  3330. 0
  3331. Mode: 444
  3332. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  3333. Path: fixtures/sys/block/sda/queue/zoned
  3334. Lines: 1
  3335. none
  3336. Mode: 444
  3337. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  3338. Path: fixtures/sys/block/sda/stat
  3339. Lines: 1
  3340. 9652963 396792 759304206 412943 8422549 6731723 286915323 13947418 0 5658367 19174573 1 2 3 12
  3341. Mode: 664
  3342. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  3343. Directory: fixtures/sys/class
  3344. Mode: 775
  3345. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  3346. Directory: fixtures/sys/class/fc_host
  3347. Mode: 755
  3348. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  3349. Directory: fixtures/sys/class/fc_host/host0
  3350. Mode: 755
  3351. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  3352. Path: fixtures/sys/class/fc_host/host0/dev_loss_tmo
  3353. Lines: 1
  3354. 30
  3355. Mode: 644
  3356. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  3357. Path: fixtures/sys/class/fc_host/host0/fabric_name
  3358. Lines: 1
  3359. 0x0
  3360. Mode: 644
  3361. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  3362. Path: fixtures/sys/class/fc_host/host0/node_name
  3363. Lines: 1
  3364. 0x2000e0071bce95f2
  3365. Mode: 644
  3366. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  3367. Path: fixtures/sys/class/fc_host/host0/port_id
  3368. Lines: 1
  3369. 0x000002
  3370. Mode: 644
  3371. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  3372. Path: fixtures/sys/class/fc_host/host0/port_name
  3373. Lines: 1
  3374. 0x1000e0071bce95f2
  3375. Mode: 644
  3376. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  3377. Path: fixtures/sys/class/fc_host/host0/port_state
  3378. Lines: 1
  3379. Online
  3380. Mode: 644
  3381. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  3382. Path: fixtures/sys/class/fc_host/host0/port_type
  3383. Lines: 1
  3384. Point-To-Point (direct nport connection)
  3385. Mode: 644
  3386. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  3387. Path: fixtures/sys/class/fc_host/host0/speed
  3388. Lines: 1
  3389. 16 Gbit
  3390. Mode: 644
  3391. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  3392. Directory: fixtures/sys/class/fc_host/host0/statistics
  3393. Mode: 755
  3394. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  3395. Path: fixtures/sys/class/fc_host/host0/statistics/dumped_frames
  3396. Lines: 1
  3397. 0xffffffffffffffff
  3398. Mode: 644
  3399. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  3400. Path: fixtures/sys/class/fc_host/host0/statistics/error_frames
  3401. Lines: 1
  3402. 0x0
  3403. Mode: 644
  3404. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  3405. Path: fixtures/sys/class/fc_host/host0/statistics/fcp_packet_aborts
  3406. Lines: 1
  3407. 0x13
  3408. Mode: 644
  3409. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  3410. Path: fixtures/sys/class/fc_host/host0/statistics/invalid_crc_count
  3411. Lines: 1
  3412. 0x2
  3413. Mode: 644
  3414. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  3415. Path: fixtures/sys/class/fc_host/host0/statistics/invalid_tx_word_count
  3416. Lines: 1
  3417. 0x8
  3418. Mode: 644
  3419. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  3420. Path: fixtures/sys/class/fc_host/host0/statistics/link_failure_count
  3421. Lines: 1
  3422. 0x9
  3423. Mode: 644
  3424. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  3425. Path: fixtures/sys/class/fc_host/host0/statistics/loss_of_signal_count
  3426. Lines: 1
  3427. 0x11
  3428. Mode: 644
  3429. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  3430. Path: fixtures/sys/class/fc_host/host0/statistics/loss_of_sync_count
  3431. Lines: 1
  3432. 0x10
  3433. Mode: 644
  3434. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  3435. Path: fixtures/sys/class/fc_host/host0/statistics/nos_count
  3436. Lines: 1
  3437. 0x12
  3438. Mode: 644
  3439. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  3440. Path: fixtures/sys/class/fc_host/host0/statistics/rx_frames
  3441. Lines: 1
  3442. 0x3
  3443. Mode: 644
  3444. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  3445. Path: fixtures/sys/class/fc_host/host0/statistics/rx_words
  3446. Lines: 1
  3447. 0x4
  3448. Mode: 644
  3449. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  3450. Path: fixtures/sys/class/fc_host/host0/statistics/seconds_since_last_reset
  3451. Lines: 1
  3452. 0x7
  3453. Mode: 644
  3454. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  3455. Path: fixtures/sys/class/fc_host/host0/statistics/tx_frames
  3456. Lines: 1
  3457. 0x5
  3458. Mode: 644
  3459. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  3460. Path: fixtures/sys/class/fc_host/host0/statistics/tx_words
  3461. Lines: 1
  3462. 0x6
  3463. Mode: 644
  3464. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  3465. Path: fixtures/sys/class/fc_host/host0/supported_classes
  3466. Lines: 1
  3467. Class 3
  3468. Mode: 644
  3469. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  3470. Path: fixtures/sys/class/fc_host/host0/supported_speeds
  3471. Lines: 1
  3472. 4 Gbit, 8 Gbit, 16 Gbit
  3473. Mode: 644
  3474. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  3475. Path: fixtures/sys/class/fc_host/host0/symbolic_name
  3476. Lines: 1
  3477. Emulex SN1100E2P FV12.4.270.3 DV12.4.0.0. HN:gotest. OS:Linux
  3478. Mode: 644
  3479. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  3480. Directory: fixtures/sys/class/infiniband
  3481. Mode: 755
  3482. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  3483. Directory: fixtures/sys/class/infiniband/mlx4_0
  3484. Mode: 755
  3485. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  3486. Path: fixtures/sys/class/infiniband/mlx4_0/board_id
  3487. Lines: 1
  3488. SM_1141000001000
  3489. Mode: 644
  3490. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  3491. Path: fixtures/sys/class/infiniband/mlx4_0/fw_ver
  3492. Lines: 1
  3493. 2.31.5050
  3494. Mode: 644
  3495. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  3496. Path: fixtures/sys/class/infiniband/mlx4_0/hca_type
  3497. Lines: 1
  3498. MT4099
  3499. Mode: 644
  3500. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  3501. Directory: fixtures/sys/class/infiniband/mlx4_0/ports
  3502. Mode: 755
  3503. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  3504. Directory: fixtures/sys/class/infiniband/mlx4_0/ports/1
  3505. Mode: 755
  3506. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  3507. Directory: fixtures/sys/class/infiniband/mlx4_0/ports/1/counters
  3508. Mode: 755
  3509. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  3510. Path: fixtures/sys/class/infiniband/mlx4_0/ports/1/counters/VL15_dropped
  3511. Lines: 1
  3512. 0
  3513. Mode: 664
  3514. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  3515. Path: fixtures/sys/class/infiniband/mlx4_0/ports/1/counters/excessive_buffer_overrun_errors
  3516. Lines: 1
  3517. 0
  3518. Mode: 644
  3519. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  3520. Path: fixtures/sys/class/infiniband/mlx4_0/ports/1/counters/link_downed
  3521. Lines: 1
  3522. 0
  3523. Mode: 644
  3524. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  3525. Path: fixtures/sys/class/infiniband/mlx4_0/ports/1/counters/link_error_recovery
  3526. Lines: 1
  3527. 0
  3528. Mode: 644
  3529. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  3530. Path: fixtures/sys/class/infiniband/mlx4_0/ports/1/counters/local_link_integrity_errors
  3531. Lines: 1
  3532. 0
  3533. Mode: 644
  3534. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  3535. Path: fixtures/sys/class/infiniband/mlx4_0/ports/1/counters/port_rcv_constraint_errors
  3536. Lines: 1
  3537. 0
  3538. Mode: 644
  3539. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  3540. Path: fixtures/sys/class/infiniband/mlx4_0/ports/1/counters/port_rcv_data
  3541. Lines: 1
  3542. 2221223609
  3543. Mode: 644
  3544. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  3545. Path: fixtures/sys/class/infiniband/mlx4_0/ports/1/counters/port_rcv_errors
  3546. Lines: 1
  3547. 0
  3548. Mode: 644
  3549. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  3550. Path: fixtures/sys/class/infiniband/mlx4_0/ports/1/counters/port_rcv_packets
  3551. Lines: 1
  3552. 87169372
  3553. Mode: 644
  3554. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  3555. Path: fixtures/sys/class/infiniband/mlx4_0/ports/1/counters/port_rcv_remote_physical_errors
  3556. Lines: 1
  3557. 0
  3558. Mode: 644
  3559. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  3560. Path: fixtures/sys/class/infiniband/mlx4_0/ports/1/counters/port_rcv_switch_relay_errors
  3561. Lines: 1
  3562. 0
  3563. Mode: 644
  3564. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  3565. Path: fixtures/sys/class/infiniband/mlx4_0/ports/1/counters/port_xmit_constraint_errors
  3566. Lines: 1
  3567. 0
  3568. Mode: 644
  3569. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  3570. Path: fixtures/sys/class/infiniband/mlx4_0/ports/1/counters/port_xmit_data
  3571. Lines: 1
  3572. 26509113295
  3573. Mode: 644
  3574. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  3575. Path: fixtures/sys/class/infiniband/mlx4_0/ports/1/counters/port_xmit_discards
  3576. Lines: 1
  3577. 0
  3578. Mode: 644
  3579. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  3580. Path: fixtures/sys/class/infiniband/mlx4_0/ports/1/counters/port_xmit_packets
  3581. Lines: 1
  3582. 85734114
  3583. Mode: 644
  3584. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  3585. Path: fixtures/sys/class/infiniband/mlx4_0/ports/1/counters/port_xmit_wait
  3586. Lines: 1
  3587. 3599
  3588. Mode: 644
  3589. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  3590. Path: fixtures/sys/class/infiniband/mlx4_0/ports/1/counters/symbol_error
  3591. Lines: 1
  3592. 0
  3593. Mode: 644
  3594. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  3595. Path: fixtures/sys/class/infiniband/mlx4_0/ports/1/phys_state
  3596. Lines: 1
  3597. 5: LinkUp
  3598. Mode: 644
  3599. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  3600. Path: fixtures/sys/class/infiniband/mlx4_0/ports/1/rate
  3601. Lines: 1
  3602. 40 Gb/sec (4X QDR)
  3603. Mode: 644
  3604. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  3605. Path: fixtures/sys/class/infiniband/mlx4_0/ports/1/state
  3606. Lines: 1
  3607. 4: ACTIVE
  3608. Mode: 644
  3609. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  3610. Directory: fixtures/sys/class/infiniband/mlx4_0/ports/2
  3611. Mode: 755
  3612. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  3613. Directory: fixtures/sys/class/infiniband/mlx4_0/ports/2/counters
  3614. Mode: 755
  3615. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  3616. Path: fixtures/sys/class/infiniband/mlx4_0/ports/2/counters/VL15_dropped
  3617. Lines: 1
  3618. 0
  3619. Mode: 664
  3620. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  3621. Path: fixtures/sys/class/infiniband/mlx4_0/ports/2/counters/excessive_buffer_overrun_errors
  3622. Lines: 1
  3623. 0
  3624. Mode: 644
  3625. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  3626. Path: fixtures/sys/class/infiniband/mlx4_0/ports/2/counters/link_downed
  3627. Lines: 1
  3628. 0
  3629. Mode: 644
  3630. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  3631. Path: fixtures/sys/class/infiniband/mlx4_0/ports/2/counters/link_error_recovery
  3632. Lines: 1
  3633. 0
  3634. Mode: 644
  3635. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  3636. Path: fixtures/sys/class/infiniband/mlx4_0/ports/2/counters/local_link_integrity_errors
  3637. Lines: 1
  3638. 0
  3639. Mode: 644
  3640. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  3641. Path: fixtures/sys/class/infiniband/mlx4_0/ports/2/counters/port_rcv_constraint_errors
  3642. Lines: 1
  3643. 0
  3644. Mode: 644
  3645. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  3646. Path: fixtures/sys/class/infiniband/mlx4_0/ports/2/counters/port_rcv_data
  3647. Lines: 1
  3648. 2460436784
  3649. Mode: 644
  3650. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  3651. Path: fixtures/sys/class/infiniband/mlx4_0/ports/2/counters/port_rcv_errors
  3652. Lines: 1
  3653. 0
  3654. Mode: 644
  3655. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  3656. Path: fixtures/sys/class/infiniband/mlx4_0/ports/2/counters/port_rcv_packets
  3657. Lines: 1
  3658. 89332064
  3659. Mode: 644
  3660. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  3661. Path: fixtures/sys/class/infiniband/mlx4_0/ports/2/counters/port_rcv_remote_physical_errors
  3662. Lines: 1
  3663. 0
  3664. Mode: 644
  3665. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  3666. Path: fixtures/sys/class/infiniband/mlx4_0/ports/2/counters/port_rcv_switch_relay_errors
  3667. Lines: 1
  3668. 0
  3669. Mode: 644
  3670. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  3671. Path: fixtures/sys/class/infiniband/mlx4_0/ports/2/counters/port_xmit_constraint_errors
  3672. Lines: 1
  3673. 0
  3674. Mode: 644
  3675. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  3676. Path: fixtures/sys/class/infiniband/mlx4_0/ports/2/counters/port_xmit_data
  3677. Lines: 1
  3678. 26540356890
  3679. Mode: 644
  3680. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  3681. Path: fixtures/sys/class/infiniband/mlx4_0/ports/2/counters/port_xmit_discards
  3682. Lines: 1
  3683. 0
  3684. Mode: 644
  3685. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  3686. Path: fixtures/sys/class/infiniband/mlx4_0/ports/2/counters/port_xmit_packets
  3687. Lines: 1
  3688. 88622850
  3689. Mode: 644
  3690. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  3691. Path: fixtures/sys/class/infiniband/mlx4_0/ports/2/counters/port_xmit_wait
  3692. Lines: 1
  3693. 3846
  3694. Mode: 644
  3695. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  3696. Path: fixtures/sys/class/infiniband/mlx4_0/ports/2/counters/symbol_error
  3697. Lines: 1
  3698. 0
  3699. Mode: 644
  3700. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  3701. Path: fixtures/sys/class/infiniband/mlx4_0/ports/2/phys_state
  3702. Lines: 1
  3703. 5: LinkUp
  3704. Mode: 644
  3705. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  3706. Path: fixtures/sys/class/infiniband/mlx4_0/ports/2/rate
  3707. Lines: 1
  3708. 40 Gb/sec (4X QDR)
  3709. Mode: 644
  3710. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  3711. Path: fixtures/sys/class/infiniband/mlx4_0/ports/2/state
  3712. Lines: 1
  3713. 4: ACTIVE
  3714. Mode: 644
  3715. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  3716. Directory: fixtures/sys/class/net
  3717. Mode: 775
  3718. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  3719. Directory: fixtures/sys/class/net/eth0
  3720. Mode: 755
  3721. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  3722. Path: fixtures/sys/class/net/eth0/addr_assign_type
  3723. Lines: 1
  3724. 3
  3725. Mode: 644
  3726. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  3727. Path: fixtures/sys/class/net/eth0/addr_len
  3728. Lines: 1
  3729. 6
  3730. Mode: 644
  3731. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  3732. Path: fixtures/sys/class/net/eth0/address
  3733. Lines: 1
  3734. 01:01:01:01:01:01
  3735. Mode: 644
  3736. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  3737. Path: fixtures/sys/class/net/eth0/broadcast
  3738. Lines: 1
  3739. ff:ff:ff:ff:ff:ff
  3740. Mode: 644
  3741. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  3742. Path: fixtures/sys/class/net/eth0/carrier
  3743. Lines: 1
  3744. 1
  3745. Mode: 644
  3746. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  3747. Path: fixtures/sys/class/net/eth0/carrier_changes
  3748. Lines: 1
  3749. 2
  3750. Mode: 644
  3751. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  3752. Path: fixtures/sys/class/net/eth0/carrier_down_count
  3753. Lines: 1
  3754. 1
  3755. Mode: 644
  3756. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  3757. Path: fixtures/sys/class/net/eth0/carrier_up_count
  3758. Lines: 1
  3759. 1
  3760. Mode: 644
  3761. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  3762. Path: fixtures/sys/class/net/eth0/dev_id
  3763. Lines: 1
  3764. 0x20
  3765. Mode: 644
  3766. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  3767. Path: fixtures/sys/class/net/eth0/device
  3768. SymlinkTo: ../../../devices/pci0000:00/0000:00:1f.6/
  3769. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  3770. Path: fixtures/sys/class/net/eth0/dormant
  3771. Lines: 1
  3772. 1
  3773. Mode: 644
  3774. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  3775. Path: fixtures/sys/class/net/eth0/duplex
  3776. Lines: 1
  3777. full
  3778. Mode: 644
  3779. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  3780. Path: fixtures/sys/class/net/eth0/flags
  3781. Lines: 1
  3782. 0x1303
  3783. Mode: 644
  3784. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  3785. Path: fixtures/sys/class/net/eth0/ifalias
  3786. Lines: 0
  3787. Mode: 644
  3788. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  3789. Path: fixtures/sys/class/net/eth0/ifindex
  3790. Lines: 1
  3791. 2
  3792. Mode: 644
  3793. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  3794. Path: fixtures/sys/class/net/eth0/iflink
  3795. Lines: 1
  3796. 2
  3797. Mode: 644
  3798. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  3799. Path: fixtures/sys/class/net/eth0/link_mode
  3800. Lines: 1
  3801. 1
  3802. Mode: 644
  3803. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  3804. Path: fixtures/sys/class/net/eth0/mtu
  3805. Lines: 1
  3806. 1500
  3807. Mode: 644
  3808. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  3809. Path: fixtures/sys/class/net/eth0/name_assign_type
  3810. Lines: 1
  3811. 2
  3812. Mode: 644
  3813. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  3814. Path: fixtures/sys/class/net/eth0/netdev_group
  3815. Lines: 1
  3816. 0
  3817. Mode: 644
  3818. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  3819. Path: fixtures/sys/class/net/eth0/operstate
  3820. Lines: 1
  3821. up
  3822. Mode: 644
  3823. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  3824. Path: fixtures/sys/class/net/eth0/phys_port_id
  3825. Lines: 0
  3826. Mode: 644
  3827. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  3828. Path: fixtures/sys/class/net/eth0/phys_port_name
  3829. Lines: 0
  3830. Mode: 644
  3831. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  3832. Path: fixtures/sys/class/net/eth0/phys_switch_id
  3833. Lines: 0
  3834. Mode: 644
  3835. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  3836. Path: fixtures/sys/class/net/eth0/speed
  3837. Lines: 1
  3838. 1000
  3839. Mode: 644
  3840. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  3841. Path: fixtures/sys/class/net/eth0/tx_queue_len
  3842. Lines: 1
  3843. 1000
  3844. Mode: 644
  3845. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  3846. Path: fixtures/sys/class/net/eth0/type
  3847. Lines: 1
  3848. 1
  3849. Mode: 644
  3850. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  3851. Directory: fixtures/sys/class/power_supply
  3852. Mode: 755
  3853. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  3854. Path: fixtures/sys/class/power_supply/AC
  3855. SymlinkTo: ../../devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:00/PNP0C09:00/ACPI0003:00/power_supply/AC
  3856. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  3857. Path: fixtures/sys/class/power_supply/BAT0
  3858. SymlinkTo: ../../devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:00/PNP0C09:00/PNP0C0A:00/power_supply/BAT0
  3859. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  3860. Directory: fixtures/sys/class/powercap
  3861. Mode: 755
  3862. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  3863. Directory: fixtures/sys/class/powercap/intel-rapl
  3864. Mode: 755
  3865. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  3866. Path: fixtures/sys/class/powercap/intel-rapl/enabled
  3867. Lines: 1
  3868. 1
  3869. Mode: 644
  3870. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  3871. Path: fixtures/sys/class/powercap/intel-rapl/uevent
  3872. Lines: 0
  3873. Mode: 644
  3874. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  3875. Directory: fixtures/sys/class/powercap/intel-rapl:0
  3876. Mode: 755
  3877. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  3878. Path: fixtures/sys/class/powercap/intel-rapl:0/constraint_0_max_power_uw
  3879. Lines: 1
  3880. 95000000
  3881. Mode: 444
  3882. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  3883. Path: fixtures/sys/class/powercap/intel-rapl:0/constraint_0_name
  3884. Lines: 1
  3885. long_term
  3886. Mode: 444
  3887. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  3888. Path: fixtures/sys/class/powercap/intel-rapl:0/constraint_0_power_limit_uw
  3889. Lines: 1
  3890. 4090000000
  3891. Mode: 644
  3892. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  3893. Path: fixtures/sys/class/powercap/intel-rapl:0/constraint_0_time_window_us
  3894. Lines: 1
  3895. 999424
  3896. Mode: 644
  3897. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  3898. Path: fixtures/sys/class/powercap/intel-rapl:0/constraint_1_max_power_uw
  3899. Lines: 1
  3900. 0
  3901. Mode: 444
  3902. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  3903. Path: fixtures/sys/class/powercap/intel-rapl:0/constraint_1_name
  3904. Lines: 1
  3905. short_term
  3906. Mode: 444
  3907. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  3908. Path: fixtures/sys/class/powercap/intel-rapl:0/constraint_1_power_limit_uw
  3909. Lines: 1
  3910. 4090000000
  3911. Mode: 644
  3912. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  3913. Path: fixtures/sys/class/powercap/intel-rapl:0/constraint_1_time_window_us
  3914. Lines: 1
  3915. 2440
  3916. Mode: 644
  3917. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  3918. Path: fixtures/sys/class/powercap/intel-rapl:0/enabled
  3919. Lines: 1
  3920. 1
  3921. Mode: 644
  3922. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  3923. Path: fixtures/sys/class/powercap/intel-rapl:0/energy_uj
  3924. Lines: 1
  3925. 240422366267
  3926. Mode: 444
  3927. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  3928. Path: fixtures/sys/class/powercap/intel-rapl:0/max_energy_range_uj
  3929. Lines: 1
  3930. 262143328850
  3931. Mode: 444
  3932. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  3933. Path: fixtures/sys/class/powercap/intel-rapl:0/name
  3934. Lines: 1
  3935. package-0
  3936. Mode: 444
  3937. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  3938. Path: fixtures/sys/class/powercap/intel-rapl:0/uevent
  3939. Lines: 0
  3940. Mode: 644
  3941. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  3942. Directory: fixtures/sys/class/powercap/intel-rapl:0:0
  3943. Mode: 755
  3944. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  3945. Path: fixtures/sys/class/powercap/intel-rapl:0:0/constraint_0_max_power_uw
  3946. Lines: 0
  3947. Mode: 444
  3948. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  3949. Path: fixtures/sys/class/powercap/intel-rapl:0:0/constraint_0_name
  3950. Lines: 1
  3951. long_term
  3952. Mode: 444
  3953. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  3954. Path: fixtures/sys/class/powercap/intel-rapl:0:0/constraint_0_power_limit_uw
  3955. Lines: 1
  3956. 0
  3957. Mode: 644
  3958. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  3959. Path: fixtures/sys/class/powercap/intel-rapl:0:0/constraint_0_time_window_us
  3960. Lines: 1
  3961. 976
  3962. Mode: 644
  3963. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  3964. Path: fixtures/sys/class/powercap/intel-rapl:0:0/enabled
  3965. Lines: 1
  3966. 0
  3967. Mode: 644
  3968. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  3969. Path: fixtures/sys/class/powercap/intel-rapl:0:0/energy_uj
  3970. Lines: 1
  3971. 118821284256
  3972. Mode: 444
  3973. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  3974. Path: fixtures/sys/class/powercap/intel-rapl:0:0/max_energy_range_uj
  3975. Lines: 1
  3976. 262143328850
  3977. Mode: 444
  3978. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  3979. Path: fixtures/sys/class/powercap/intel-rapl:0:0/name
  3980. Lines: 1
  3981. core
  3982. Mode: 444
  3983. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  3984. Path: fixtures/sys/class/powercap/intel-rapl:0:0/uevent
  3985. Lines: 0
  3986. Mode: 644
  3987. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  3988. Directory: fixtures/sys/class/powercap/intel-rapl:a
  3989. Mode: 755
  3990. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  3991. Path: fixtures/sys/class/powercap/intel-rapl:a/constraint_0_max_power_uw
  3992. Lines: 1
  3993. 95000000
  3994. Mode: 444
  3995. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  3996. Path: fixtures/sys/class/powercap/intel-rapl:a/constraint_0_name
  3997. Lines: 1
  3998. long_term
  3999. Mode: 444
  4000. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  4001. Path: fixtures/sys/class/powercap/intel-rapl:a/constraint_0_power_limit_uw
  4002. Lines: 1
  4003. 4090000000
  4004. Mode: 644
  4005. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  4006. Path: fixtures/sys/class/powercap/intel-rapl:a/constraint_0_time_window_us
  4007. Lines: 1
  4008. 999424
  4009. Mode: 644
  4010. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  4011. Path: fixtures/sys/class/powercap/intel-rapl:a/constraint_1_max_power_uw
  4012. Lines: 1
  4013. 0
  4014. Mode: 444
  4015. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  4016. Path: fixtures/sys/class/powercap/intel-rapl:a/constraint_1_name
  4017. Lines: 1
  4018. short_term
  4019. Mode: 444
  4020. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  4021. Path: fixtures/sys/class/powercap/intel-rapl:a/constraint_1_power_limit_uw
  4022. Lines: 1
  4023. 4090000000
  4024. Mode: 644
  4025. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  4026. Path: fixtures/sys/class/powercap/intel-rapl:a/constraint_1_time_window_us
  4027. Lines: 1
  4028. 2440
  4029. Mode: 644
  4030. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  4031. Path: fixtures/sys/class/powercap/intel-rapl:a/enabled
  4032. Lines: 1
  4033. 1
  4034. Mode: 644
  4035. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  4036. Path: fixtures/sys/class/powercap/intel-rapl:a/energy_uj
  4037. Lines: 1
  4038. 240422366267
  4039. Mode: 444
  4040. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  4041. Path: fixtures/sys/class/powercap/intel-rapl:a/max_energy_range_uj
  4042. Lines: 1
  4043. 262143328850
  4044. Mode: 444
  4045. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  4046. Path: fixtures/sys/class/powercap/intel-rapl:a/name
  4047. Lines: 1
  4048. package-10
  4049. Mode: 444
  4050. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  4051. Path: fixtures/sys/class/powercap/intel-rapl:a/uevent
  4052. Lines: 0
  4053. Mode: 644
  4054. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  4055. Directory: fixtures/sys/class/thermal
  4056. Mode: 775
  4057. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  4058. Directory: fixtures/sys/class/thermal/cooling_device0
  4059. Mode: 755
  4060. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  4061. Path: fixtures/sys/class/thermal/cooling_device0/cur_state
  4062. Lines: 1
  4063. 0
  4064. Mode: 644
  4065. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  4066. Path: fixtures/sys/class/thermal/cooling_device0/max_state
  4067. Lines: 1
  4068. 50
  4069. Mode: 644
  4070. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  4071. Path: fixtures/sys/class/thermal/cooling_device0/type
  4072. Lines: 1
  4073. Processor
  4074. Mode: 644
  4075. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  4076. Directory: fixtures/sys/class/thermal/cooling_device1
  4077. Mode: 755
  4078. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  4079. Path: fixtures/sys/class/thermal/cooling_device1/cur_state
  4080. Lines: 1
  4081. -1
  4082. Mode: 644
  4083. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  4084. Path: fixtures/sys/class/thermal/cooling_device1/max_state
  4085. Lines: 1
  4086. 27
  4087. Mode: 644
  4088. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  4089. Path: fixtures/sys/class/thermal/cooling_device1/type
  4090. Lines: 1
  4091. intel_powerclamp
  4092. Mode: 644
  4093. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  4094. Directory: fixtures/sys/class/thermal/thermal_zone0
  4095. Mode: 775
  4096. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  4097. Path: fixtures/sys/class/thermal/thermal_zone0/policy
  4098. Lines: 1
  4099. step_wise
  4100. Mode: 664
  4101. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  4102. Path: fixtures/sys/class/thermal/thermal_zone0/temp
  4103. Lines: 1
  4104. 49925
  4105. Mode: 664
  4106. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  4107. Path: fixtures/sys/class/thermal/thermal_zone0/type
  4108. Lines: 1
  4109. bcm2835_thermal
  4110. Mode: 664
  4111. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  4112. Directory: fixtures/sys/class/thermal/thermal_zone1
  4113. Mode: 755
  4114. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  4115. Path: fixtures/sys/class/thermal/thermal_zone1/mode
  4116. Lines: 1
  4117. enabled
  4118. Mode: 664
  4119. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  4120. Path: fixtures/sys/class/thermal/thermal_zone1/passive
  4121. Lines: 1
  4122. 0
  4123. Mode: 664
  4124. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  4125. Path: fixtures/sys/class/thermal/thermal_zone1/policy
  4126. Lines: 1
  4127. step_wise
  4128. Mode: 664
  4129. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  4130. Path: fixtures/sys/class/thermal/thermal_zone1/temp
  4131. Lines: 1
  4132. -44000
  4133. Mode: 664
  4134. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  4135. Path: fixtures/sys/class/thermal/thermal_zone1/type
  4136. Lines: 1
  4137. acpitz
  4138. Mode: 664
  4139. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  4140. Directory: fixtures/sys/devices
  4141. Mode: 755
  4142. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  4143. Directory: fixtures/sys/devices/LNXSYSTM:00
  4144. Mode: 755
  4145. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  4146. Directory: fixtures/sys/devices/LNXSYSTM:00/LNXSYBUS:00
  4147. Mode: 755
  4148. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  4149. Directory: fixtures/sys/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00
  4150. Mode: 755
  4151. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  4152. Directory: fixtures/sys/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:00
  4153. Mode: 755
  4154. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  4155. Directory: fixtures/sys/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:00/PNP0C09:00
  4156. Mode: 755
  4157. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  4158. Directory: fixtures/sys/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:00/PNP0C09:00/ACPI0003:00
  4159. Mode: 755
  4160. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  4161. Directory: fixtures/sys/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:00/PNP0C09:00/ACPI0003:00/power_supply
  4162. Mode: 755
  4163. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  4164. Directory: fixtures/sys/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:00/PNP0C09:00/ACPI0003:00/power_supply/AC
  4165. Mode: 755
  4166. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  4167. Path: fixtures/sys/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:00/PNP0C09:00/ACPI0003:00/power_supply/AC/device
  4168. SymlinkTo: ../../../ACPI0003:00
  4169. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  4170. Path: fixtures/sys/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:00/PNP0C09:00/ACPI0003:00/power_supply/AC/online
  4171. Lines: 1
  4172. 0
  4173. Mode: 444
  4174. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  4175. Directory: fixtures/sys/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:00/PNP0C09:00/ACPI0003:00/power_supply/AC/power
  4176. Mode: 755
  4177. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  4178. Path: fixtures/sys/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:00/PNP0C09:00/ACPI0003:00/power_supply/AC/power/async
  4179. Lines: 1
  4180. disabled
  4181. Mode: 644
  4182. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  4183. Path: fixtures/sys/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:00/PNP0C09:00/ACPI0003:00/power_supply/AC/power/autosuspend_delay_ms
  4184. Lines: 0
  4185. Mode: 644
  4186. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  4187. Path: fixtures/sys/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:00/PNP0C09:00/ACPI0003:00/power_supply/AC/power/control
  4188. Lines: 1
  4189. auto
  4190. Mode: 644
  4191. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  4192. Path: fixtures/sys/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:00/PNP0C09:00/ACPI0003:00/power_supply/AC/power/runtime_active_kids
  4193. Lines: 1
  4194. 0
  4195. Mode: 444
  4196. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  4197. Path: fixtures/sys/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:00/PNP0C09:00/ACPI0003:00/power_supply/AC/power/runtime_active_time
  4198. Lines: 1
  4199. 0
  4200. Mode: 444
  4201. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  4202. Path: fixtures/sys/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:00/PNP0C09:00/ACPI0003:00/power_supply/AC/power/runtime_enabled
  4203. Lines: 1
  4204. disabled
  4205. Mode: 444
  4206. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  4207. Path: fixtures/sys/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:00/PNP0C09:00/ACPI0003:00/power_supply/AC/power/runtime_status
  4208. Lines: 1
  4209. unsupported
  4210. Mode: 444
  4211. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  4212. Path: fixtures/sys/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:00/PNP0C09:00/ACPI0003:00/power_supply/AC/power/runtime_suspended_time
  4213. Lines: 1
  4214. 0
  4215. Mode: 444
  4216. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  4217. Path: fixtures/sys/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:00/PNP0C09:00/ACPI0003:00/power_supply/AC/power/runtime_usage
  4218. Lines: 1
  4219. 0
  4220. Mode: 444
  4221. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  4222. Path: fixtures/sys/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:00/PNP0C09:00/ACPI0003:00/power_supply/AC/power/wakeup
  4223. Lines: 1
  4224. enabled
  4225. Mode: 644
  4226. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  4227. Path: fixtures/sys/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:00/PNP0C09:00/ACPI0003:00/power_supply/AC/power/wakeup_abort_count
  4228. Lines: 1
  4229. 0
  4230. Mode: 444
  4231. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  4232. Path: fixtures/sys/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:00/PNP0C09:00/ACPI0003:00/power_supply/AC/power/wakeup_active
  4233. Lines: 1
  4234. 0
  4235. Mode: 444
  4236. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  4237. Path: fixtures/sys/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:00/PNP0C09:00/ACPI0003:00/power_supply/AC/power/wakeup_active_count
  4238. Lines: 1
  4239. 1
  4240. Mode: 444
  4241. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  4242. Path: fixtures/sys/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:00/PNP0C09:00/ACPI0003:00/power_supply/AC/power/wakeup_count
  4243. Lines: 1
  4244. 0
  4245. Mode: 444
  4246. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  4247. Path: fixtures/sys/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:00/PNP0C09:00/ACPI0003:00/power_supply/AC/power/wakeup_expire_count
  4248. Lines: 1
  4249. 0
  4250. Mode: 444
  4251. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  4252. Path: fixtures/sys/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:00/PNP0C09:00/ACPI0003:00/power_supply/AC/power/wakeup_last_time_ms
  4253. Lines: 1
  4254. 10598
  4255. Mode: 444
  4256. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  4257. Path: fixtures/sys/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:00/PNP0C09:00/ACPI0003:00/power_supply/AC/power/wakeup_max_time_ms
  4258. Lines: 1
  4259. 1
  4260. Mode: 444
  4261. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  4262. Path: fixtures/sys/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:00/PNP0C09:00/ACPI0003:00/power_supply/AC/power/wakeup_prevent_sleep_time_ms
  4263. Lines: 1
  4264. 0
  4265. Mode: 444
  4266. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  4267. Path: fixtures/sys/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:00/PNP0C09:00/ACPI0003:00/power_supply/AC/power/wakeup_total_time_ms
  4268. Lines: 1
  4269. 1
  4270. Mode: 444
  4271. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  4272. Path: fixtures/sys/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:00/PNP0C09:00/ACPI0003:00/power_supply/AC/subsystem
  4273. SymlinkTo: ../../../../../../../../../class/power_supply
  4274. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  4275. Path: fixtures/sys/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:00/PNP0C09:00/ACPI0003:00/power_supply/AC/type
  4276. Lines: 1
  4277. Mains
  4278. Mode: 444
  4279. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  4280. Path: fixtures/sys/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:00/PNP0C09:00/ACPI0003:00/power_supply/AC/uevent
  4281. Lines: 2
  4282. POWER_SUPPLY_NAME=AC
  4283. POWER_SUPPLY_ONLINE=0
  4284. Mode: 644
  4285. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  4286. Directory: fixtures/sys/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:00/PNP0C09:00/PNP0C0A:00
  4287. Mode: 755
  4288. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  4289. Directory: fixtures/sys/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:00/PNP0C09:00/PNP0C0A:00/power_supply
  4290. Mode: 755
  4291. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  4292. Directory: fixtures/sys/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:00/PNP0C09:00/PNP0C0A:00/power_supply/BAT0
  4293. Mode: 755
  4294. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  4295. Path: fixtures/sys/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:00/PNP0C09:00/PNP0C0A:00/power_supply/BAT0/alarm
  4296. Lines: 1
  4297. 2369000
  4298. Mode: 644
  4299. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  4300. Path: fixtures/sys/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:00/PNP0C09:00/PNP0C0A:00/power_supply/BAT0/capacity
  4301. Lines: 1
  4302. 98
  4303. Mode: 444
  4304. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  4305. Path: fixtures/sys/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:00/PNP0C09:00/PNP0C0A:00/power_supply/BAT0/capacity_level
  4306. Lines: 1
  4307. Normal
  4308. Mode: 444
  4309. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  4310. Path: fixtures/sys/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:00/PNP0C09:00/PNP0C0A:00/power_supply/BAT0/charge_start_threshold
  4311. Lines: 1
  4312. 95
  4313. Mode: 644
  4314. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  4315. Path: fixtures/sys/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:00/PNP0C09:00/PNP0C0A:00/power_supply/BAT0/charge_stop_threshold
  4316. Lines: 1
  4317. 100
  4318. Mode: 644
  4319. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  4320. Path: fixtures/sys/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:00/PNP0C09:00/PNP0C0A:00/power_supply/BAT0/cycle_count
  4321. Lines: 1
  4322. 0
  4323. Mode: 444
  4324. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  4325. Path: fixtures/sys/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:00/PNP0C09:00/PNP0C0A:00/power_supply/BAT0/device
  4326. SymlinkTo: ../../../PNP0C0A:00
  4327. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  4328. Path: fixtures/sys/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:00/PNP0C09:00/PNP0C0A:00/power_supply/BAT0/energy_full
  4329. Lines: 1
  4330. 50060000
  4331. Mode: 444
  4332. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  4333. Path: fixtures/sys/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:00/PNP0C09:00/PNP0C0A:00/power_supply/BAT0/energy_full_design
  4334. Lines: 1
  4335. 47520000
  4336. Mode: 444
  4337. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  4338. Path: fixtures/sys/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:00/PNP0C09:00/PNP0C0A:00/power_supply/BAT0/energy_now
  4339. Lines: 1
  4340. 49450000
  4341. Mode: 444
  4342. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  4343. Path: fixtures/sys/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:00/PNP0C09:00/PNP0C0A:00/power_supply/BAT0/manufacturer
  4344. Lines: 1
  4345. LGC
  4346. Mode: 444
  4347. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  4348. Path: fixtures/sys/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:00/PNP0C09:00/PNP0C0A:00/power_supply/BAT0/model_name
  4349. Lines: 1
  4350. LNV-45N1
  4351. Mode: 444
  4352. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  4353. Directory: fixtures/sys/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:00/PNP0C09:00/PNP0C0A:00/power_supply/BAT0/power
  4354. Mode: 755
  4355. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  4356. Path: fixtures/sys/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:00/PNP0C09:00/PNP0C0A:00/power_supply/BAT0/power/async
  4357. Lines: 1
  4358. disabled
  4359. Mode: 644
  4360. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  4361. Path: fixtures/sys/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:00/PNP0C09:00/PNP0C0A:00/power_supply/BAT0/power/autosuspend_delay_ms
  4362. Lines: 0
  4363. Mode: 644
  4364. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  4365. Path: fixtures/sys/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:00/PNP0C09:00/PNP0C0A:00/power_supply/BAT0/power/control
  4366. Lines: 1
  4367. auto
  4368. Mode: 644
  4369. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  4370. Path: fixtures/sys/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:00/PNP0C09:00/PNP0C0A:00/power_supply/BAT0/power/runtime_active_kids
  4371. Lines: 1
  4372. 0
  4373. Mode: 444
  4374. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  4375. Path: fixtures/sys/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:00/PNP0C09:00/PNP0C0A:00/power_supply/BAT0/power/runtime_active_time
  4376. Lines: 1
  4377. 0
  4378. Mode: 444
  4379. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  4380. Path: fixtures/sys/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:00/PNP0C09:00/PNP0C0A:00/power_supply/BAT0/power/runtime_enabled
  4381. Lines: 1
  4382. disabled
  4383. Mode: 444
  4384. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  4385. Path: fixtures/sys/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:00/PNP0C09:00/PNP0C0A:00/power_supply/BAT0/power/runtime_status
  4386. Lines: 1
  4387. unsupported
  4388. Mode: 444
  4389. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  4390. Path: fixtures/sys/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:00/PNP0C09:00/PNP0C0A:00/power_supply/BAT0/power/runtime_suspended_time
  4391. Lines: 1
  4392. 0
  4393. Mode: 444
  4394. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  4395. Path: fixtures/sys/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:00/PNP0C09:00/PNP0C0A:00/power_supply/BAT0/power/runtime_usage
  4396. Lines: 1
  4397. 0
  4398. Mode: 444
  4399. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  4400. Path: fixtures/sys/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:00/PNP0C09:00/PNP0C0A:00/power_supply/BAT0/power_now
  4401. Lines: 1
  4402. 4830000
  4403. Mode: 444
  4404. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  4405. Path: fixtures/sys/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:00/PNP0C09:00/PNP0C0A:00/power_supply/BAT0/present
  4406. Lines: 1
  4407. 1
  4408. Mode: 444
  4409. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  4410. Path: fixtures/sys/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:00/PNP0C09:00/PNP0C0A:00/power_supply/BAT0/serial_number
  4411. Lines: 1
  4412. 38109
  4413. Mode: 444
  4414. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  4415. Path: fixtures/sys/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:00/PNP0C09:00/PNP0C0A:00/power_supply/BAT0/status
  4416. Lines: 1
  4417. Discharging
  4418. Mode: 444
  4419. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  4420. Path: fixtures/sys/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:00/PNP0C09:00/PNP0C0A:00/power_supply/BAT0/subsystem
  4421. SymlinkTo: ../../../../../../../../../class/power_supply
  4422. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  4423. Path: fixtures/sys/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:00/PNP0C09:00/PNP0C0A:00/power_supply/BAT0/technology
  4424. Lines: 1
  4425. Li-ion
  4426. Mode: 444
  4427. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  4428. Path: fixtures/sys/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:00/PNP0C09:00/PNP0C0A:00/power_supply/BAT0/type
  4429. Lines: 1
  4430. Battery
  4431. Mode: 444
  4432. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  4433. Path: fixtures/sys/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:00/PNP0C09:00/PNP0C0A:00/power_supply/BAT0/uevent
  4434. Lines: 16
  4435. POWER_SUPPLY_NAME=BAT0
  4436. POWER_SUPPLY_STATUS=Discharging
  4437. POWER_SUPPLY_PRESENT=1
  4438. POWER_SUPPLY_TECHNOLOGY=Li-ion
  4439. POWER_SUPPLY_CYCLE_COUNT=0
  4440. POWER_SUPPLY_VOLTAGE_MIN_DESIGN=10800000
  4441. POWER_SUPPLY_VOLTAGE_NOW=11750000
  4442. POWER_SUPPLY_POWER_NOW=5064000
  4443. POWER_SUPPLY_ENERGY_FULL_DESIGN=47520000
  4444. POWER_SUPPLY_ENERGY_FULL=47390000
  4445. POWER_SUPPLY_ENERGY_NOW=40730000
  4446. POWER_SUPPLY_CAPACITY=85
  4447. POWER_SUPPLY_CAPACITY_LEVEL=Normal
  4448. POWER_SUPPLY_MODEL_NAME=LNV-45N1
  4449. POWER_SUPPLY_MANUFACTURER=LGC
  4450. POWER_SUPPLY_SERIAL_NUMBER=38109
  4451. Mode: 644
  4452. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  4453. Path: fixtures/sys/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:00/PNP0C09:00/PNP0C0A:00/power_supply/BAT0/voltage_min_design
  4454. Lines: 1
  4455. 10800000
  4456. Mode: 444
  4457. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  4458. Path: fixtures/sys/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:00/PNP0C09:00/PNP0C0A:00/power_supply/BAT0/voltage_now
  4459. Lines: 1
  4460. 12229000
  4461. Mode: 444
  4462. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  4463. Directory: fixtures/sys/devices/pci0000:00
  4464. Mode: 755
  4465. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  4466. Directory: fixtures/sys/devices/pci0000:00/0000:00:0d.0
  4467. Mode: 755
  4468. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  4469. Directory: fixtures/sys/devices/pci0000:00/0000:00:0d.0/ata4
  4470. Mode: 755
  4471. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  4472. Directory: fixtures/sys/devices/pci0000:00/0000:00:0d.0/ata4/host3
  4473. Mode: 755
  4474. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  4475. Directory: fixtures/sys/devices/pci0000:00/0000:00:0d.0/ata4/host3/target3:0:0
  4476. Mode: 755
  4477. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  4478. Directory: fixtures/sys/devices/pci0000:00/0000:00:0d.0/ata4/host3/target3:0:0/3:0:0:0
  4479. Mode: 755
  4480. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  4481. Directory: fixtures/sys/devices/pci0000:00/0000:00:0d.0/ata4/host3/target3:0:0/3:0:0:0/block
  4482. Mode: 755
  4483. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  4484. Directory: fixtures/sys/devices/pci0000:00/0000:00:0d.0/ata4/host3/target3:0:0/3:0:0:0/block/sdb
  4485. Mode: 755
  4486. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  4487. Directory: fixtures/sys/devices/pci0000:00/0000:00:0d.0/ata4/host3/target3:0:0/3:0:0:0/block/sdb/bcache
  4488. Mode: 755
  4489. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  4490. Path: fixtures/sys/devices/pci0000:00/0000:00:0d.0/ata4/host3/target3:0:0/3:0:0:0/block/sdb/bcache/dirty_data
  4491. Lines: 1
  4492. 0
  4493. Mode: 644
  4494. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  4495. Directory: fixtures/sys/devices/pci0000:00/0000:00:0d.0/ata4/host3/target3:0:0/3:0:0:0/block/sdb/bcache/stats_day
  4496. Mode: 755
  4497. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  4498. Path: fixtures/sys/devices/pci0000:00/0000:00:0d.0/ata4/host3/target3:0:0/3:0:0:0/block/sdb/bcache/stats_day/bypassed
  4499. Lines: 1
  4500. 0
  4501. Mode: 644
  4502. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  4503. Path: fixtures/sys/devices/pci0000:00/0000:00:0d.0/ata4/host3/target3:0:0/3:0:0:0/block/sdb/bcache/stats_day/cache_bypass_hits
  4504. Lines: 1
  4505. 0
  4506. Mode: 644
  4507. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  4508. Path: fixtures/sys/devices/pci0000:00/0000:00:0d.0/ata4/host3/target3:0:0/3:0:0:0/block/sdb/bcache/stats_day/cache_bypass_misses
  4509. Lines: 1
  4510. 0
  4511. Mode: 644
  4512. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  4513. Path: fixtures/sys/devices/pci0000:00/0000:00:0d.0/ata4/host3/target3:0:0/3:0:0:0/block/sdb/bcache/stats_day/cache_hit_ratio
  4514. Lines: 1
  4515. 100
  4516. Mode: 644
  4517. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  4518. Path: fixtures/sys/devices/pci0000:00/0000:00:0d.0/ata4/host3/target3:0:0/3:0:0:0/block/sdb/bcache/stats_day/cache_hits
  4519. Lines: 1
  4520. 289
  4521. Mode: 644
  4522. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  4523. Path: fixtures/sys/devices/pci0000:00/0000:00:0d.0/ata4/host3/target3:0:0/3:0:0:0/block/sdb/bcache/stats_day/cache_miss_collisions
  4524. Lines: 1
  4525. 0
  4526. Mode: 644
  4527. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  4528. Path: fixtures/sys/devices/pci0000:00/0000:00:0d.0/ata4/host3/target3:0:0/3:0:0:0/block/sdb/bcache/stats_day/cache_misses
  4529. Lines: 1
  4530. 0
  4531. Mode: 644
  4532. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  4533. Path: fixtures/sys/devices/pci0000:00/0000:00:0d.0/ata4/host3/target3:0:0/3:0:0:0/block/sdb/bcache/stats_day/cache_readaheads
  4534. Lines: 1
  4535. 0
  4536. Mode: 644
  4537. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  4538. Directory: fixtures/sys/devices/pci0000:00/0000:00:0d.0/ata4/host3/target3:0:0/3:0:0:0/block/sdb/bcache/stats_five_minute
  4539. Mode: 755
  4540. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  4541. Path: fixtures/sys/devices/pci0000:00/0000:00:0d.0/ata4/host3/target3:0:0/3:0:0:0/block/sdb/bcache/stats_five_minute/bypassed
  4542. Lines: 1
  4543. 0
  4544. Mode: 644
  4545. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  4546. Path: fixtures/sys/devices/pci0000:00/0000:00:0d.0/ata4/host3/target3:0:0/3:0:0:0/block/sdb/bcache/stats_five_minute/cache_bypass_hits
  4547. Lines: 1
  4548. 0
  4549. Mode: 644
  4550. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  4551. Path: fixtures/sys/devices/pci0000:00/0000:00:0d.0/ata4/host3/target3:0:0/3:0:0:0/block/sdb/bcache/stats_five_minute/cache_bypass_misses
  4552. Lines: 1
  4553. 0
  4554. Mode: 644
  4555. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  4556. Path: fixtures/sys/devices/pci0000:00/0000:00:0d.0/ata4/host3/target3:0:0/3:0:0:0/block/sdb/bcache/stats_five_minute/cache_hit_ratio
  4557. Lines: 1
  4558. 0
  4559. Mode: 644
  4560. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  4561. Path: fixtures/sys/devices/pci0000:00/0000:00:0d.0/ata4/host3/target3:0:0/3:0:0:0/block/sdb/bcache/stats_five_minute/cache_hits
  4562. Lines: 1
  4563. 0
  4564. Mode: 644
  4565. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  4566. Path: fixtures/sys/devices/pci0000:00/0000:00:0d.0/ata4/host3/target3:0:0/3:0:0:0/block/sdb/bcache/stats_five_minute/cache_miss_collisions
  4567. Lines: 1
  4568. 0
  4569. Mode: 644
  4570. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  4571. Path: fixtures/sys/devices/pci0000:00/0000:00:0d.0/ata4/host3/target3:0:0/3:0:0:0/block/sdb/bcache/stats_five_minute/cache_misses
  4572. Lines: 1
  4573. 0
  4574. Mode: 644
  4575. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  4576. Path: fixtures/sys/devices/pci0000:00/0000:00:0d.0/ata4/host3/target3:0:0/3:0:0:0/block/sdb/bcache/stats_five_minute/cache_readaheads
  4577. Lines: 1
  4578. 0
  4579. Mode: 644
  4580. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  4581. Directory: fixtures/sys/devices/pci0000:00/0000:00:0d.0/ata4/host3/target3:0:0/3:0:0:0/block/sdb/bcache/stats_hour
  4582. Mode: 755
  4583. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  4584. Path: fixtures/sys/devices/pci0000:00/0000:00:0d.0/ata4/host3/target3:0:0/3:0:0:0/block/sdb/bcache/stats_hour/bypassed
  4585. Lines: 1
  4586. 0
  4587. Mode: 644
  4588. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  4589. Path: fixtures/sys/devices/pci0000:00/0000:00:0d.0/ata4/host3/target3:0:0/3:0:0:0/block/sdb/bcache/stats_hour/cache_bypass_hits
  4590. Lines: 1
  4591. 0
  4592. Mode: 644
  4593. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  4594. Path: fixtures/sys/devices/pci0000:00/0000:00:0d.0/ata4/host3/target3:0:0/3:0:0:0/block/sdb/bcache/stats_hour/cache_bypass_misses
  4595. Lines: 1
  4596. 0
  4597. Mode: 644
  4598. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  4599. Path: fixtures/sys/devices/pci0000:00/0000:00:0d.0/ata4/host3/target3:0:0/3:0:0:0/block/sdb/bcache/stats_hour/cache_hit_ratio
  4600. Lines: 1
  4601. 0
  4602. Mode: 644
  4603. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  4604. Path: fixtures/sys/devices/pci0000:00/0000:00:0d.0/ata4/host3/target3:0:0/3:0:0:0/block/sdb/bcache/stats_hour/cache_hits
  4605. Lines: 1
  4606. 0
  4607. Mode: 644
  4608. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  4609. Path: fixtures/sys/devices/pci0000:00/0000:00:0d.0/ata4/host3/target3:0:0/3:0:0:0/block/sdb/bcache/stats_hour/cache_miss_collisions
  4610. Lines: 1
  4611. 0
  4612. Mode: 644
  4613. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  4614. Path: fixtures/sys/devices/pci0000:00/0000:00:0d.0/ata4/host3/target3:0:0/3:0:0:0/block/sdb/bcache/stats_hour/cache_misses
  4615. Lines: 1
  4616. 0
  4617. Mode: 644
  4618. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  4619. Path: fixtures/sys/devices/pci0000:00/0000:00:0d.0/ata4/host3/target3:0:0/3:0:0:0/block/sdb/bcache/stats_hour/cache_readaheads
  4620. Lines: 1
  4621. 0
  4622. Mode: 644
  4623. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  4624. Directory: fixtures/sys/devices/pci0000:00/0000:00:0d.0/ata4/host3/target3:0:0/3:0:0:0/block/sdb/bcache/stats_total
  4625. Mode: 755
  4626. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  4627. Path: fixtures/sys/devices/pci0000:00/0000:00:0d.0/ata4/host3/target3:0:0/3:0:0:0/block/sdb/bcache/stats_total/bypassed
  4628. Lines: 1
  4629. 0
  4630. Mode: 644
  4631. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  4632. Path: fixtures/sys/devices/pci0000:00/0000:00:0d.0/ata4/host3/target3:0:0/3:0:0:0/block/sdb/bcache/stats_total/cache_bypass_hits
  4633. Lines: 1
  4634. 0
  4635. Mode: 644
  4636. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  4637. Path: fixtures/sys/devices/pci0000:00/0000:00:0d.0/ata4/host3/target3:0:0/3:0:0:0/block/sdb/bcache/stats_total/cache_bypass_misses
  4638. Lines: 1
  4639. 0
  4640. Mode: 644
  4641. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  4642. Path: fixtures/sys/devices/pci0000:00/0000:00:0d.0/ata4/host3/target3:0:0/3:0:0:0/block/sdb/bcache/stats_total/cache_hit_ratio
  4643. Lines: 1
  4644. 100
  4645. Mode: 644
  4646. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  4647. Path: fixtures/sys/devices/pci0000:00/0000:00:0d.0/ata4/host3/target3:0:0/3:0:0:0/block/sdb/bcache/stats_total/cache_hits
  4648. Lines: 1
  4649. 546
  4650. Mode: 644
  4651. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  4652. Path: fixtures/sys/devices/pci0000:00/0000:00:0d.0/ata4/host3/target3:0:0/3:0:0:0/block/sdb/bcache/stats_total/cache_miss_collisions
  4653. Lines: 1
  4654. 0
  4655. Mode: 644
  4656. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  4657. Path: fixtures/sys/devices/pci0000:00/0000:00:0d.0/ata4/host3/target3:0:0/3:0:0:0/block/sdb/bcache/stats_total/cache_misses
  4658. Lines: 1
  4659. 0
  4660. Mode: 644
  4661. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  4662. Path: fixtures/sys/devices/pci0000:00/0000:00:0d.0/ata4/host3/target3:0:0/3:0:0:0/block/sdb/bcache/stats_total/cache_readaheads
  4663. Lines: 1
  4664. 0
  4665. Mode: 644
  4666. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  4667. Directory: fixtures/sys/devices/pci0000:00/0000:00:0d.0/ata5
  4668. Mode: 755
  4669. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  4670. Directory: fixtures/sys/devices/pci0000:00/0000:00:0d.0/ata5/host4
  4671. Mode: 755
  4672. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  4673. Directory: fixtures/sys/devices/pci0000:00/0000:00:0d.0/ata5/host4/target4:0:0
  4674. Mode: 755
  4675. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  4676. Directory: fixtures/sys/devices/pci0000:00/0000:00:0d.0/ata5/host4/target4:0:0/4:0:0:0
  4677. Mode: 755
  4678. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  4679. Directory: fixtures/sys/devices/pci0000:00/0000:00:0d.0/ata5/host4/target4:0:0/4:0:0:0/block
  4680. Mode: 755
  4681. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  4682. Directory: fixtures/sys/devices/pci0000:00/0000:00:0d.0/ata5/host4/target4:0:0/4:0:0:0/block/sdc
  4683. Mode: 755
  4684. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  4685. Directory: fixtures/sys/devices/pci0000:00/0000:00:0d.0/ata5/host4/target4:0:0/4:0:0:0/block/sdc/bcache
  4686. Mode: 755
  4687. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  4688. Path: fixtures/sys/devices/pci0000:00/0000:00:0d.0/ata5/host4/target4:0:0/4:0:0:0/block/sdc/bcache/io_errors
  4689. Lines: 1
  4690. 0
  4691. Mode: 644
  4692. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  4693. Path: fixtures/sys/devices/pci0000:00/0000:00:0d.0/ata5/host4/target4:0:0/4:0:0:0/block/sdc/bcache/metadata_written
  4694. Lines: 1
  4695. 512
  4696. Mode: 644
  4697. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  4698. Path: fixtures/sys/devices/pci0000:00/0000:00:0d.0/ata5/host4/target4:0:0/4:0:0:0/block/sdc/bcache/priority_stats
  4699. Lines: 5
  4700. Unused: 99%
  4701. Metadata: 0%
  4702. Average: 10473
  4703. Sectors per Q: 64
  4704. Quantiles: [0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 20946 20946 20946 20946 20946 20946 20946 20946 20946 20946 20946 20946 20946 20946 20946 20946]
  4705. Mode: 644
  4706. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  4707. Path: fixtures/sys/devices/pci0000:00/0000:00:0d.0/ata5/host4/target4:0:0/4:0:0:0/block/sdc/bcache/written
  4708. Lines: 1
  4709. 0
  4710. Mode: 644
  4711. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  4712. Directory: fixtures/sys/devices/pci0000:00/0000:00:1f.6
  4713. Mode: 755
  4714. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  4715. Path: fixtures/sys/devices/pci0000:00/0000:00:1f.6/ari_enabled
  4716. Lines: 1
  4717. 0
  4718. Mode: 444
  4719. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  4720. Path: fixtures/sys/devices/pci0000:00/0000:00:1f.6/broken_parity_status
  4721. Lines: 1
  4722. 0
  4723. Mode: 644
  4724. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  4725. Path: fixtures/sys/devices/pci0000:00/0000:00:1f.6/class
  4726. Lines: 1
  4727. 0x020000
  4728. Mode: 444
  4729. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  4730. Path: fixtures/sys/devices/pci0000:00/0000:00:1f.6/consistent_dma_mask_bits
  4731. Lines: 1
  4732. 64
  4733. Mode: 444
  4734. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  4735. Path: fixtures/sys/devices/pci0000:00/0000:00:1f.6/d3cold_allowed
  4736. Lines: 1
  4737. 1
  4738. Mode: 644
  4739. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  4740. Path: fixtures/sys/devices/pci0000:00/0000:00:1f.6/device
  4741. Lines: 1
  4742. 0x15d7
  4743. Mode: 444
  4744. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  4745. Path: fixtures/sys/devices/pci0000:00/0000:00:1f.6/dma_mask_bits
  4746. Lines: 1
  4747. 64
  4748. Mode: 444
  4749. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  4750. Path: fixtures/sys/devices/pci0000:00/0000:00:1f.6/driver_override
  4751. Lines: 1
  4752. (null)
  4753. Mode: 644
  4754. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  4755. Path: fixtures/sys/devices/pci0000:00/0000:00:1f.6/enable
  4756. Lines: 1
  4757. 1
  4758. Mode: 644
  4759. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  4760. Path: fixtures/sys/devices/pci0000:00/0000:00:1f.6/irq
  4761. Lines: 1
  4762. 140
  4763. Mode: 444
  4764. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  4765. Path: fixtures/sys/devices/pci0000:00/0000:00:1f.6/local_cpulist
  4766. Lines: 1
  4767. 0-7
  4768. Mode: 444
  4769. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  4770. Path: fixtures/sys/devices/pci0000:00/0000:00:1f.6/local_cpus
  4771. Lines: 1
  4772. ff
  4773. Mode: 444
  4774. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  4775. Path: fixtures/sys/devices/pci0000:00/0000:00:1f.6/modalias
  4776. Lines: 1
  4777. pci:v00008086d000015D7sv000017AAsd0000225Abc02sc00i00
  4778. Mode: 444
  4779. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  4780. Path: fixtures/sys/devices/pci0000:00/0000:00:1f.6/msi_bus
  4781. Lines: 1
  4782. 1
  4783. Mode: 644
  4784. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  4785. Path: fixtures/sys/devices/pci0000:00/0000:00:1f.6/numa_node
  4786. Lines: 1
  4787. -1
  4788. Mode: 644
  4789. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  4790. Path: fixtures/sys/devices/pci0000:00/0000:00:1f.6/resource
  4791. Lines: 13
  4792. 0x00000000ec200000 0x00000000ec21ffff 0x0000000000040200
  4793. 0x0000000000000000 0x0000000000000000 0x0000000000000000
  4794. 0x0000000000000000 0x0000000000000000 0x0000000000000000
  4795. 0x0000000000000000 0x0000000000000000 0x0000000000000000
  4796. 0x0000000000000000 0x0000000000000000 0x0000000000000000
  4797. 0x0000000000000000 0x0000000000000000 0x0000000000000000
  4798. 0x0000000000000000 0x0000000000000000 0x0000000000000000
  4799. 0x0000000000000000 0x0000000000000000 0x0000000000000000
  4800. 0x0000000000000000 0x0000000000000000 0x0000000000000000
  4801. 0x0000000000000000 0x0000000000000000 0x0000000000000000
  4802. 0x0000000000000000 0x0000000000000000 0x0000000000000000
  4803. 0x0000000000000000 0x0000000000000000 0x0000000000000000
  4804. 0x0000000000000000 0x0000000000000000 0x0000000000000000
  4805. Mode: 444
  4806. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  4807. Path: fixtures/sys/devices/pci0000:00/0000:00:1f.6/revision
  4808. Lines: 1
  4809. 0x21
  4810. Mode: 444
  4811. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  4812. Path: fixtures/sys/devices/pci0000:00/0000:00:1f.6/subsystem_device
  4813. Lines: 1
  4814. 0x225a
  4815. Mode: 444
  4816. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  4817. Path: fixtures/sys/devices/pci0000:00/0000:00:1f.6/subsystem_vendor
  4818. Lines: 1
  4819. 0x17aa
  4820. Mode: 444
  4821. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  4822. Path: fixtures/sys/devices/pci0000:00/0000:00:1f.6/uevent
  4823. Lines: 6
  4824. DRIVER=e1000e
  4825. PCI_CLASS=20000
  4826. PCI_ID=8086:15D7
  4827. PCI_SUBSYS_ID=17AA:225A
  4828. PCI_SLOT_NAME=0000:00:1f.6
  4829. MODALIAS=pci:v00008086d000015D7sv000017AAsd0000225Abc02sc00i00
  4830. Mode: 644
  4831. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  4832. Path: fixtures/sys/devices/pci0000:00/0000:00:1f.6/vendor
  4833. Lines: 1
  4834. 0x8086
  4835. Mode: 444
  4836. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  4837. Directory: fixtures/sys/devices/rbd
  4838. Mode: 755
  4839. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  4840. Directory: fixtures/sys/devices/rbd/0
  4841. Mode: 755
  4842. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  4843. Path: fixtures/sys/devices/rbd/0/name
  4844. Lines: 1
  4845. demo
  4846. Mode: 644
  4847. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  4848. Path: fixtures/sys/devices/rbd/0/pool
  4849. Lines: 1
  4850. iscsi-images
  4851. Mode: 644
  4852. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  4853. Directory: fixtures/sys/devices/rbd/1
  4854. Mode: 755
  4855. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  4856. Path: fixtures/sys/devices/rbd/1/name
  4857. Lines: 1
  4858. wrong
  4859. Mode: 644
  4860. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  4861. Path: fixtures/sys/devices/rbd/1/pool
  4862. Lines: 1
  4863. wrong-images
  4864. Mode: 644
  4865. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  4866. Directory: fixtures/sys/devices/system
  4867. Mode: 775
  4868. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  4869. Directory: fixtures/sys/devices/system/node
  4870. Mode: 775
  4871. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  4872. Directory: fixtures/sys/devices/system/node/node1
  4873. Mode: 755
  4874. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  4875. Path: fixtures/sys/devices/system/node/node1/vmstat
  4876. Lines: 6
  4877. nr_free_pages 1
  4878. nr_zone_inactive_anon 2
  4879. nr_zone_active_anon 3
  4880. nr_zone_inactive_file 4
  4881. nr_zone_active_file 5
  4882. nr_zone_unevictable 6
  4883. Mode: 644
  4884. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  4885. Directory: fixtures/sys/devices/system/node/node2
  4886. Mode: 755
  4887. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  4888. Path: fixtures/sys/devices/system/node/node2/vmstat
  4889. Lines: 6
  4890. nr_free_pages 7
  4891. nr_zone_inactive_anon 8
  4892. nr_zone_active_anon 9
  4893. nr_zone_inactive_file 10
  4894. nr_zone_active_file 11
  4895. nr_zone_unevictable 12
  4896. Mode: 644
  4897. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  4898. Directory: fixtures/sys/devices/system/clocksource
  4899. Mode: 775
  4900. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  4901. Directory: fixtures/sys/devices/system/clocksource/clocksource0
  4902. Mode: 775
  4903. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  4904. Path: fixtures/sys/devices/system/clocksource/clocksource0/available_clocksource
  4905. Lines: 1
  4906. tsc hpet acpi_pm
  4907. Mode: 444
  4908. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  4909. Path: fixtures/sys/devices/system/clocksource/clocksource0/current_clocksource
  4910. Lines: 1
  4911. tsc
  4912. Mode: 644
  4913. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  4914. Directory: fixtures/sys/devices/system/cpu
  4915. Mode: 775
  4916. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  4917. Directory: fixtures/sys/devices/system/cpu/cpu0
  4918. Mode: 775
  4919. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  4920. Path: fixtures/sys/devices/system/cpu/cpu0/cpufreq
  4921. SymlinkTo: ../cpufreq/policy0
  4922. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  4923. Directory: fixtures/sys/devices/system/cpu/cpu0/thermal_throttle
  4924. Mode: 755
  4925. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  4926. Path: fixtures/sys/devices/system/cpu/cpu0/thermal_throttle/core_throttle_count
  4927. Lines: 1
  4928. 10084
  4929. Mode: 444
  4930. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  4931. Path: fixtures/sys/devices/system/cpu/cpu0/thermal_throttle/package_throttle_count
  4932. Lines: 1
  4933. 34818
  4934. Mode: 444
  4935. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  4936. Directory: fixtures/sys/devices/system/cpu/cpu0/topology
  4937. Mode: 755
  4938. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  4939. Path: fixtures/sys/devices/system/cpu/cpu0/topology/core_id
  4940. Lines: 1
  4941. 0
  4942. Mode: 444
  4943. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  4944. Path: fixtures/sys/devices/system/cpu/cpu0/topology/core_siblings
  4945. Lines: 1
  4946. ff
  4947. Mode: 444
  4948. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  4949. Path: fixtures/sys/devices/system/cpu/cpu0/topology/core_siblings_list
  4950. Lines: 1
  4951. 0-7
  4952. Mode: 444
  4953. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  4954. Path: fixtures/sys/devices/system/cpu/cpu0/topology/physical_package_id
  4955. Lines: 1
  4956. 0
  4957. Mode: 444
  4958. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  4959. Path: fixtures/sys/devices/system/cpu/cpu0/topology/thread_siblings
  4960. Lines: 1
  4961. 11
  4962. Mode: 444
  4963. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  4964. Path: fixtures/sys/devices/system/cpu/cpu0/topology/thread_siblings_list
  4965. Lines: 1
  4966. 0,4
  4967. Mode: 444
  4968. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  4969. Directory: fixtures/sys/devices/system/cpu/cpu1
  4970. Mode: 775
  4971. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  4972. Directory: fixtures/sys/devices/system/cpu/cpu1/cpufreq
  4973. Mode: 775
  4974. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  4975. Path: fixtures/sys/devices/system/cpu/cpu1/cpufreq/cpuinfo_cur_freq
  4976. Lines: 1
  4977. 1200195
  4978. Mode: 400
  4979. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  4980. Path: fixtures/sys/devices/system/cpu/cpu1/cpufreq/cpuinfo_max_freq
  4981. Lines: 1
  4982. 3300000
  4983. Mode: 664
  4984. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  4985. Path: fixtures/sys/devices/system/cpu/cpu1/cpufreq/cpuinfo_min_freq
  4986. Lines: 1
  4987. 1200000
  4988. Mode: 664
  4989. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  4990. Path: fixtures/sys/devices/system/cpu/cpu1/cpufreq/cpuinfo_transition_latency
  4991. Lines: 1
  4992. 4294967295
  4993. Mode: 664
  4994. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  4995. Path: fixtures/sys/devices/system/cpu/cpu1/cpufreq/related_cpus
  4996. Lines: 1
  4997. 1
  4998. Mode: 664
  4999. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  5000. Path: fixtures/sys/devices/system/cpu/cpu1/cpufreq/scaling_available_governors
  5001. Lines: 1
  5002. performance powersave
  5003. Mode: 664
  5004. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  5005. Path: fixtures/sys/devices/system/cpu/cpu1/cpufreq/scaling_driver
  5006. Lines: 1
  5007. intel_pstate
  5008. Mode: 664
  5009. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  5010. Path: fixtures/sys/devices/system/cpu/cpu1/cpufreq/scaling_governor
  5011. Lines: 1
  5012. powersave
  5013. Mode: 664
  5014. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  5015. Path: fixtures/sys/devices/system/cpu/cpu1/cpufreq/scaling_max_freq
  5016. Lines: 1
  5017. 3300000
  5018. Mode: 664
  5019. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  5020. Path: fixtures/sys/devices/system/cpu/cpu1/cpufreq/scaling_min_freq
  5021. Lines: 1
  5022. 1200000
  5023. Mode: 664
  5024. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  5025. Path: fixtures/sys/devices/system/cpu/cpu1/cpufreq/scaling_setspeed
  5026. Lines: 1
  5027. <unsupported>
  5028. Mode: 664
  5029. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  5030. Directory: fixtures/sys/devices/system/cpu/cpu1/thermal_throttle
  5031. Mode: 755
  5032. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  5033. Path: fixtures/sys/devices/system/cpu/cpu1/thermal_throttle/core_throttle_count
  5034. Lines: 1
  5035. 523
  5036. Mode: 444
  5037. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  5038. Path: fixtures/sys/devices/system/cpu/cpu1/thermal_throttle/package_throttle_count
  5039. Lines: 1
  5040. 34818
  5041. Mode: 444
  5042. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  5043. Directory: fixtures/sys/devices/system/cpu/cpu1/topology
  5044. Mode: 755
  5045. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  5046. Path: fixtures/sys/devices/system/cpu/cpu1/topology/core_id
  5047. Lines: 1
  5048. 1
  5049. Mode: 444
  5050. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  5051. Path: fixtures/sys/devices/system/cpu/cpu1/topology/core_siblings
  5052. Lines: 1
  5053. ff
  5054. Mode: 444
  5055. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  5056. Path: fixtures/sys/devices/system/cpu/cpu1/topology/core_siblings_list
  5057. Lines: 1
  5058. 0-7
  5059. Mode: 444
  5060. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  5061. Path: fixtures/sys/devices/system/cpu/cpu1/topology/physical_package_id
  5062. Lines: 1
  5063. 0
  5064. Mode: 444
  5065. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  5066. Path: fixtures/sys/devices/system/cpu/cpu1/topology/thread_siblings
  5067. Lines: 1
  5068. 22
  5069. Mode: 444
  5070. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  5071. Path: fixtures/sys/devices/system/cpu/cpu1/topology/thread_siblings_list
  5072. Lines: 1
  5073. 1,5
  5074. Mode: 444
  5075. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  5076. Directory: fixtures/sys/devices/system/cpu/cpufreq
  5077. Mode: 775
  5078. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  5079. Directory: fixtures/sys/devices/system/cpu/cpufreq/policy0
  5080. Mode: 775
  5081. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  5082. Path: fixtures/sys/devices/system/cpu/cpufreq/policy0/affected_cpus
  5083. Lines: 1
  5084. 0
  5085. Mode: 444
  5086. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  5087. Path: fixtures/sys/devices/system/cpu/cpufreq/policy0/cpuinfo_max_freq
  5088. Lines: 1
  5089. 2400000
  5090. Mode: 444
  5091. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  5092. Path: fixtures/sys/devices/system/cpu/cpufreq/policy0/cpuinfo_min_freq
  5093. Lines: 1
  5094. 800000
  5095. Mode: 444
  5096. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  5097. Path: fixtures/sys/devices/system/cpu/cpufreq/policy0/cpuinfo_transition_latency
  5098. Lines: 1
  5099. 0
  5100. Mode: 444
  5101. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  5102. Path: fixtures/sys/devices/system/cpu/cpufreq/policy0/related_cpus
  5103. Lines: 1
  5104. 0
  5105. Mode: 444
  5106. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  5107. Path: fixtures/sys/devices/system/cpu/cpufreq/policy0/scaling_available_governors
  5108. Lines: 1
  5109. performance powersave
  5110. Mode: 444
  5111. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  5112. Path: fixtures/sys/devices/system/cpu/cpufreq/policy0/scaling_cur_freq
  5113. Lines: 1
  5114. 1219917
  5115. Mode: 444
  5116. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  5117. Path: fixtures/sys/devices/system/cpu/cpufreq/policy0/scaling_driver
  5118. Lines: 1
  5119. intel_pstate
  5120. Mode: 444
  5121. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  5122. Path: fixtures/sys/devices/system/cpu/cpufreq/policy0/scaling_governor
  5123. Lines: 1
  5124. powersave
  5125. Mode: 644
  5126. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  5127. Path: fixtures/sys/devices/system/cpu/cpufreq/policy0/scaling_max_freq
  5128. Lines: 1
  5129. 2400000
  5130. Mode: 644
  5131. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  5132. Path: fixtures/sys/devices/system/cpu/cpufreq/policy0/scaling_min_freq
  5133. Lines: 1
  5134. 800000
  5135. Mode: 644
  5136. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  5137. Path: fixtures/sys/devices/system/cpu/cpufreq/policy0/scaling_setspeed
  5138. Lines: 1
  5139. <unsupported>
  5140. Mode: 644
  5141. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  5142. Directory: fixtures/sys/devices/system/cpu/cpufreq/policy1
  5143. Mode: 755
  5144. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  5145. Directory: fixtures/sys/fs
  5146. Mode: 755
  5147. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  5148. Directory: fixtures/sys/fs/bcache
  5149. Mode: 755
  5150. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  5151. Directory: fixtures/sys/fs/bcache/deaddd54-c735-46d5-868e-f331c5fd7c74
  5152. Mode: 755
  5153. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  5154. Path: fixtures/sys/fs/bcache/deaddd54-c735-46d5-868e-f331c5fd7c74/average_key_size
  5155. Lines: 1
  5156. 0
  5157. Mode: 644
  5158. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  5159. Directory: fixtures/sys/fs/bcache/deaddd54-c735-46d5-868e-f331c5fd7c74/bdev0
  5160. Mode: 777
  5161. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  5162. Path: fixtures/sys/fs/bcache/deaddd54-c735-46d5-868e-f331c5fd7c74/bdev0/dirty_data
  5163. Lines: 1
  5164. 0
  5165. Mode: 644
  5166. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  5167. Directory: fixtures/sys/fs/bcache/deaddd54-c735-46d5-868e-f331c5fd7c74/bdev0/stats_day
  5168. Mode: 755
  5169. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  5170. Path: fixtures/sys/fs/bcache/deaddd54-c735-46d5-868e-f331c5fd7c74/bdev0/stats_day/bypassed
  5171. Lines: 1
  5172. 0
  5173. Mode: 644
  5174. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  5175. Path: fixtures/sys/fs/bcache/deaddd54-c735-46d5-868e-f331c5fd7c74/bdev0/stats_day/cache_bypass_hits
  5176. Lines: 1
  5177. 0
  5178. Mode: 644
  5179. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  5180. Path: fixtures/sys/fs/bcache/deaddd54-c735-46d5-868e-f331c5fd7c74/bdev0/stats_day/cache_bypass_misses
  5181. Lines: 1
  5182. 0
  5183. Mode: 644
  5184. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  5185. Path: fixtures/sys/fs/bcache/deaddd54-c735-46d5-868e-f331c5fd7c74/bdev0/stats_day/cache_hit_ratio
  5186. Lines: 1
  5187. 100
  5188. Mode: 644
  5189. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  5190. Path: fixtures/sys/fs/bcache/deaddd54-c735-46d5-868e-f331c5fd7c74/bdev0/stats_day/cache_hits
  5191. Lines: 1
  5192. 289
  5193. Mode: 644
  5194. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  5195. Path: fixtures/sys/fs/bcache/deaddd54-c735-46d5-868e-f331c5fd7c74/bdev0/stats_day/cache_miss_collisions
  5196. Lines: 1
  5197. 0
  5198. Mode: 644
  5199. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  5200. Path: fixtures/sys/fs/bcache/deaddd54-c735-46d5-868e-f331c5fd7c74/bdev0/stats_day/cache_misses
  5201. Lines: 1
  5202. 0
  5203. Mode: 644
  5204. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  5205. Path: fixtures/sys/fs/bcache/deaddd54-c735-46d5-868e-f331c5fd7c74/bdev0/stats_day/cache_readaheads
  5206. Lines: 1
  5207. 0
  5208. Mode: 644
  5209. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  5210. Directory: fixtures/sys/fs/bcache/deaddd54-c735-46d5-868e-f331c5fd7c74/bdev0/stats_five_minute
  5211. Mode: 755
  5212. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  5213. Path: fixtures/sys/fs/bcache/deaddd54-c735-46d5-868e-f331c5fd7c74/bdev0/stats_five_minute/bypassed
  5214. Lines: 1
  5215. 0
  5216. Mode: 644
  5217. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  5218. Path: fixtures/sys/fs/bcache/deaddd54-c735-46d5-868e-f331c5fd7c74/bdev0/stats_five_minute/cache_bypass_hits
  5219. Lines: 1
  5220. 0
  5221. Mode: 644
  5222. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  5223. Path: fixtures/sys/fs/bcache/deaddd54-c735-46d5-868e-f331c5fd7c74/bdev0/stats_five_minute/cache_bypass_misses
  5224. Lines: 1
  5225. 0
  5226. Mode: 644
  5227. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  5228. Path: fixtures/sys/fs/bcache/deaddd54-c735-46d5-868e-f331c5fd7c74/bdev0/stats_five_minute/cache_hit_ratio
  5229. Lines: 1
  5230. 0
  5231. Mode: 644
  5232. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  5233. Path: fixtures/sys/fs/bcache/deaddd54-c735-46d5-868e-f331c5fd7c74/bdev0/stats_five_minute/cache_hits
  5234. Lines: 1
  5235. 0
  5236. Mode: 644
  5237. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  5238. Path: fixtures/sys/fs/bcache/deaddd54-c735-46d5-868e-f331c5fd7c74/bdev0/stats_five_minute/cache_miss_collisions
  5239. Lines: 1
  5240. 0
  5241. Mode: 644
  5242. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  5243. Path: fixtures/sys/fs/bcache/deaddd54-c735-46d5-868e-f331c5fd7c74/bdev0/stats_five_minute/cache_misses
  5244. Lines: 1
  5245. 0
  5246. Mode: 644
  5247. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  5248. Path: fixtures/sys/fs/bcache/deaddd54-c735-46d5-868e-f331c5fd7c74/bdev0/stats_five_minute/cache_readaheads
  5249. Lines: 1
  5250. 0
  5251. Mode: 644
  5252. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  5253. Directory: fixtures/sys/fs/bcache/deaddd54-c735-46d5-868e-f331c5fd7c74/bdev0/stats_hour
  5254. Mode: 755
  5255. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  5256. Path: fixtures/sys/fs/bcache/deaddd54-c735-46d5-868e-f331c5fd7c74/bdev0/stats_hour/bypassed
  5257. Lines: 1
  5258. 0
  5259. Mode: 644
  5260. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  5261. Path: fixtures/sys/fs/bcache/deaddd54-c735-46d5-868e-f331c5fd7c74/bdev0/stats_hour/cache_bypass_hits
  5262. Lines: 1
  5263. 0
  5264. Mode: 644
  5265. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  5266. Path: fixtures/sys/fs/bcache/deaddd54-c735-46d5-868e-f331c5fd7c74/bdev0/stats_hour/cache_bypass_misses
  5267. Lines: 1
  5268. 0
  5269. Mode: 644
  5270. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  5271. Path: fixtures/sys/fs/bcache/deaddd54-c735-46d5-868e-f331c5fd7c74/bdev0/stats_hour/cache_hit_ratio
  5272. Lines: 1
  5273. 0
  5274. Mode: 644
  5275. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  5276. Path: fixtures/sys/fs/bcache/deaddd54-c735-46d5-868e-f331c5fd7c74/bdev0/stats_hour/cache_hits
  5277. Lines: 1
  5278. 0
  5279. Mode: 644
  5280. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  5281. Path: fixtures/sys/fs/bcache/deaddd54-c735-46d5-868e-f331c5fd7c74/bdev0/stats_hour/cache_miss_collisions
  5282. Lines: 1
  5283. 0
  5284. Mode: 644
  5285. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  5286. Path: fixtures/sys/fs/bcache/deaddd54-c735-46d5-868e-f331c5fd7c74/bdev0/stats_hour/cache_misses
  5287. Lines: 1
  5288. 0
  5289. Mode: 644
  5290. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  5291. Path: fixtures/sys/fs/bcache/deaddd54-c735-46d5-868e-f331c5fd7c74/bdev0/stats_hour/cache_readaheads
  5292. Lines: 1
  5293. 0
  5294. Mode: 644
  5295. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  5296. Directory: fixtures/sys/fs/bcache/deaddd54-c735-46d5-868e-f331c5fd7c74/bdev0/stats_total
  5297. Mode: 755
  5298. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  5299. Path: fixtures/sys/fs/bcache/deaddd54-c735-46d5-868e-f331c5fd7c74/bdev0/stats_total/bypassed
  5300. Lines: 1
  5301. 0
  5302. Mode: 644
  5303. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  5304. Path: fixtures/sys/fs/bcache/deaddd54-c735-46d5-868e-f331c5fd7c74/bdev0/stats_total/cache_bypass_hits
  5305. Lines: 1
  5306. 0
  5307. Mode: 644
  5308. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  5309. Path: fixtures/sys/fs/bcache/deaddd54-c735-46d5-868e-f331c5fd7c74/bdev0/stats_total/cache_bypass_misses
  5310. Lines: 1
  5311. 0
  5312. Mode: 644
  5313. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  5314. Path: fixtures/sys/fs/bcache/deaddd54-c735-46d5-868e-f331c5fd7c74/bdev0/stats_total/cache_hit_ratio
  5315. Lines: 1
  5316. 100
  5317. Mode: 644
  5318. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  5319. Path: fixtures/sys/fs/bcache/deaddd54-c735-46d5-868e-f331c5fd7c74/bdev0/stats_total/cache_hits
  5320. Lines: 1
  5321. 546
  5322. Mode: 644
  5323. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  5324. Path: fixtures/sys/fs/bcache/deaddd54-c735-46d5-868e-f331c5fd7c74/bdev0/stats_total/cache_miss_collisions
  5325. Lines: 1
  5326. 0
  5327. Mode: 644
  5328. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  5329. Path: fixtures/sys/fs/bcache/deaddd54-c735-46d5-868e-f331c5fd7c74/bdev0/stats_total/cache_misses
  5330. Lines: 1
  5331. 0
  5332. Mode: 644
  5333. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  5334. Path: fixtures/sys/fs/bcache/deaddd54-c735-46d5-868e-f331c5fd7c74/bdev0/stats_total/cache_readaheads
  5335. Lines: 1
  5336. 0
  5337. Mode: 644
  5338. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  5339. Path: fixtures/sys/fs/bcache/deaddd54-c735-46d5-868e-f331c5fd7c74/bdev0/writeback_rate_debug
  5340. Lines: 7
  5341. rate: 1.1M/sec
  5342. dirty: 20.4G
  5343. target: 20.4G
  5344. proportional: 427.5k
  5345. integral: 790.0k
  5346. change: 321.5k/sec
  5347. next io: 17ms
  5348. Mode: 644
  5349. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  5350. Path: fixtures/sys/fs/bcache/deaddd54-c735-46d5-868e-f331c5fd7c74/btree_cache_size
  5351. Lines: 1
  5352. 0
  5353. Mode: 644
  5354. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  5355. Directory: fixtures/sys/fs/bcache/deaddd54-c735-46d5-868e-f331c5fd7c74/cache0
  5356. Mode: 777
  5357. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  5358. Path: fixtures/sys/fs/bcache/deaddd54-c735-46d5-868e-f331c5fd7c74/cache0/io_errors
  5359. Lines: 1
  5360. 0
  5361. Mode: 644
  5362. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  5363. Path: fixtures/sys/fs/bcache/deaddd54-c735-46d5-868e-f331c5fd7c74/cache0/metadata_written
  5364. Lines: 1
  5365. 512
  5366. Mode: 644
  5367. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  5368. Path: fixtures/sys/fs/bcache/deaddd54-c735-46d5-868e-f331c5fd7c74/cache0/priority_stats
  5369. Lines: 5
  5370. Unused: 99%
  5371. Metadata: 0%
  5372. Average: 10473
  5373. Sectors per Q: 64
  5374. Quantiles: [0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 20946 20946 20946 20946 20946 20946 20946 20946 20946 20946 20946 20946 20946 20946 20946 20946]
  5375. Mode: 644
  5376. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  5377. Path: fixtures/sys/fs/bcache/deaddd54-c735-46d5-868e-f331c5fd7c74/cache0/written
  5378. Lines: 1
  5379. 0
  5380. Mode: 644
  5381. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  5382. Path: fixtures/sys/fs/bcache/deaddd54-c735-46d5-868e-f331c5fd7c74/cache_available_percent
  5383. Lines: 1
  5384. 100
  5385. Mode: 644
  5386. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  5387. Path: fixtures/sys/fs/bcache/deaddd54-c735-46d5-868e-f331c5fd7c74/congested
  5388. Lines: 1
  5389. 0
  5390. Mode: 644
  5391. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  5392. Directory: fixtures/sys/fs/bcache/deaddd54-c735-46d5-868e-f331c5fd7c74/internal
  5393. Mode: 755
  5394. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  5395. Path: fixtures/sys/fs/bcache/deaddd54-c735-46d5-868e-f331c5fd7c74/internal/active_journal_entries
  5396. Lines: 1
  5397. 1
  5398. Mode: 644
  5399. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  5400. Path: fixtures/sys/fs/bcache/deaddd54-c735-46d5-868e-f331c5fd7c74/internal/btree_nodes
  5401. Lines: 1
  5402. 0
  5403. Mode: 644
  5404. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  5405. Path: fixtures/sys/fs/bcache/deaddd54-c735-46d5-868e-f331c5fd7c74/internal/btree_read_average_duration_us
  5406. Lines: 1
  5407. 1305
  5408. Mode: 644
  5409. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  5410. Path: fixtures/sys/fs/bcache/deaddd54-c735-46d5-868e-f331c5fd7c74/internal/cache_read_races
  5411. Lines: 1
  5412. 0
  5413. Mode: 644
  5414. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  5415. Path: fixtures/sys/fs/bcache/deaddd54-c735-46d5-868e-f331c5fd7c74/root_usage_percent
  5416. Lines: 1
  5417. 0
  5418. Mode: 644
  5419. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  5420. Directory: fixtures/sys/fs/bcache/deaddd54-c735-46d5-868e-f331c5fd7c74/stats_day
  5421. Mode: 755
  5422. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  5423. Path: fixtures/sys/fs/bcache/deaddd54-c735-46d5-868e-f331c5fd7c74/stats_day/bypassed
  5424. Lines: 1
  5425. 0
  5426. Mode: 644
  5427. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  5428. Path: fixtures/sys/fs/bcache/deaddd54-c735-46d5-868e-f331c5fd7c74/stats_day/cache_bypass_hits
  5429. Lines: 1
  5430. 0
  5431. Mode: 644
  5432. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  5433. Path: fixtures/sys/fs/bcache/deaddd54-c735-46d5-868e-f331c5fd7c74/stats_day/cache_bypass_misses
  5434. Lines: 1
  5435. 0
  5436. Mode: 644
  5437. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  5438. Path: fixtures/sys/fs/bcache/deaddd54-c735-46d5-868e-f331c5fd7c74/stats_day/cache_hit_ratio
  5439. Lines: 1
  5440. 100
  5441. Mode: 644
  5442. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  5443. Path: fixtures/sys/fs/bcache/deaddd54-c735-46d5-868e-f331c5fd7c74/stats_day/cache_hits
  5444. Lines: 1
  5445. 289
  5446. Mode: 644
  5447. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  5448. Path: fixtures/sys/fs/bcache/deaddd54-c735-46d5-868e-f331c5fd7c74/stats_day/cache_miss_collisions
  5449. Lines: 1
  5450. 0
  5451. Mode: 644
  5452. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  5453. Path: fixtures/sys/fs/bcache/deaddd54-c735-46d5-868e-f331c5fd7c74/stats_day/cache_misses
  5454. Lines: 1
  5455. 0
  5456. Mode: 644
  5457. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  5458. Path: fixtures/sys/fs/bcache/deaddd54-c735-46d5-868e-f331c5fd7c74/stats_day/cache_readaheads
  5459. Lines: 1
  5460. 0
  5461. Mode: 644
  5462. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  5463. Directory: fixtures/sys/fs/bcache/deaddd54-c735-46d5-868e-f331c5fd7c74/stats_five_minute
  5464. Mode: 755
  5465. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  5466. Path: fixtures/sys/fs/bcache/deaddd54-c735-46d5-868e-f331c5fd7c74/stats_five_minute/bypassed
  5467. Lines: 1
  5468. 0
  5469. Mode: 644
  5470. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  5471. Path: fixtures/sys/fs/bcache/deaddd54-c735-46d5-868e-f331c5fd7c74/stats_five_minute/cache_bypass_hits
  5472. Lines: 1
  5473. 0
  5474. Mode: 644
  5475. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  5476. Path: fixtures/sys/fs/bcache/deaddd54-c735-46d5-868e-f331c5fd7c74/stats_five_minute/cache_bypass_misses
  5477. Lines: 1
  5478. 0
  5479. Mode: 644
  5480. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  5481. Path: fixtures/sys/fs/bcache/deaddd54-c735-46d5-868e-f331c5fd7c74/stats_five_minute/cache_hit_ratio
  5482. Lines: 1
  5483. 0
  5484. Mode: 644
  5485. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  5486. Path: fixtures/sys/fs/bcache/deaddd54-c735-46d5-868e-f331c5fd7c74/stats_five_minute/cache_hits
  5487. Lines: 1
  5488. 0
  5489. Mode: 644
  5490. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  5491. Path: fixtures/sys/fs/bcache/deaddd54-c735-46d5-868e-f331c5fd7c74/stats_five_minute/cache_miss_collisions
  5492. Lines: 1
  5493. 0
  5494. Mode: 644
  5495. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  5496. Path: fixtures/sys/fs/bcache/deaddd54-c735-46d5-868e-f331c5fd7c74/stats_five_minute/cache_misses
  5497. Lines: 1
  5498. 0
  5499. Mode: 644
  5500. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  5501. Path: fixtures/sys/fs/bcache/deaddd54-c735-46d5-868e-f331c5fd7c74/stats_five_minute/cache_readaheads
  5502. Lines: 1
  5503. 0
  5504. Mode: 644
  5505. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  5506. Directory: fixtures/sys/fs/bcache/deaddd54-c735-46d5-868e-f331c5fd7c74/stats_hour
  5507. Mode: 755
  5508. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  5509. Path: fixtures/sys/fs/bcache/deaddd54-c735-46d5-868e-f331c5fd7c74/stats_hour/bypassed
  5510. Lines: 1
  5511. 0
  5512. Mode: 644
  5513. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  5514. Path: fixtures/sys/fs/bcache/deaddd54-c735-46d5-868e-f331c5fd7c74/stats_hour/cache_bypass_hits
  5515. Lines: 1
  5516. 0
  5517. Mode: 644
  5518. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  5519. Path: fixtures/sys/fs/bcache/deaddd54-c735-46d5-868e-f331c5fd7c74/stats_hour/cache_bypass_misses
  5520. Lines: 1
  5521. 0
  5522. Mode: 644
  5523. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  5524. Path: fixtures/sys/fs/bcache/deaddd54-c735-46d5-868e-f331c5fd7c74/stats_hour/cache_hit_ratio
  5525. Lines: 1
  5526. 0
  5527. Mode: 644
  5528. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  5529. Path: fixtures/sys/fs/bcache/deaddd54-c735-46d5-868e-f331c5fd7c74/stats_hour/cache_hits
  5530. Lines: 1
  5531. 0
  5532. Mode: 644
  5533. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  5534. Path: fixtures/sys/fs/bcache/deaddd54-c735-46d5-868e-f331c5fd7c74/stats_hour/cache_miss_collisions
  5535. Lines: 1
  5536. 0
  5537. Mode: 644
  5538. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  5539. Path: fixtures/sys/fs/bcache/deaddd54-c735-46d5-868e-f331c5fd7c74/stats_hour/cache_misses
  5540. Lines: 1
  5541. 0
  5542. Mode: 644
  5543. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  5544. Path: fixtures/sys/fs/bcache/deaddd54-c735-46d5-868e-f331c5fd7c74/stats_hour/cache_readaheads
  5545. Lines: 1
  5546. 0
  5547. Mode: 644
  5548. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  5549. Directory: fixtures/sys/fs/bcache/deaddd54-c735-46d5-868e-f331c5fd7c74/stats_total
  5550. Mode: 755
  5551. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  5552. Path: fixtures/sys/fs/bcache/deaddd54-c735-46d5-868e-f331c5fd7c74/stats_total/bypassed
  5553. Lines: 1
  5554. 0
  5555. Mode: 644
  5556. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  5557. Path: fixtures/sys/fs/bcache/deaddd54-c735-46d5-868e-f331c5fd7c74/stats_total/cache_bypass_hits
  5558. Lines: 1
  5559. 0
  5560. Mode: 644
  5561. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  5562. Path: fixtures/sys/fs/bcache/deaddd54-c735-46d5-868e-f331c5fd7c74/stats_total/cache_bypass_misses
  5563. Lines: 1
  5564. 0
  5565. Mode: 644
  5566. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  5567. Path: fixtures/sys/fs/bcache/deaddd54-c735-46d5-868e-f331c5fd7c74/stats_total/cache_hit_ratio
  5568. Lines: 1
  5569. 100
  5570. Mode: 644
  5571. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  5572. Path: fixtures/sys/fs/bcache/deaddd54-c735-46d5-868e-f331c5fd7c74/stats_total/cache_hits
  5573. Lines: 1
  5574. 546
  5575. Mode: 644
  5576. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  5577. Path: fixtures/sys/fs/bcache/deaddd54-c735-46d5-868e-f331c5fd7c74/stats_total/cache_miss_collisions
  5578. Lines: 1
  5579. 0
  5580. Mode: 644
  5581. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  5582. Path: fixtures/sys/fs/bcache/deaddd54-c735-46d5-868e-f331c5fd7c74/stats_total/cache_misses
  5583. Lines: 1
  5584. 0
  5585. Mode: 644
  5586. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  5587. Path: fixtures/sys/fs/bcache/deaddd54-c735-46d5-868e-f331c5fd7c74/stats_total/cache_readaheads
  5588. Lines: 1
  5589. 0
  5590. Mode: 644
  5591. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  5592. Path: fixtures/sys/fs/bcache/deaddd54-c735-46d5-868e-f331c5fd7c74/tree_depth
  5593. Lines: 1
  5594. 0
  5595. Mode: 644
  5596. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  5597. Directory: fixtures/sys/fs/btrfs
  5598. Mode: 755
  5599. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  5600. Directory: fixtures/sys/fs/btrfs/0abb23a9-579b-43e6-ad30-227ef47fcb9d
  5601. Mode: 755
  5602. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  5603. Directory: fixtures/sys/fs/btrfs/0abb23a9-579b-43e6-ad30-227ef47fcb9d/allocation
  5604. Mode: 755
  5605. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  5606. Directory: fixtures/sys/fs/btrfs/0abb23a9-579b-43e6-ad30-227ef47fcb9d/allocation/data
  5607. Mode: 755
  5608. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  5609. Path: fixtures/sys/fs/btrfs/0abb23a9-579b-43e6-ad30-227ef47fcb9d/allocation/data/bytes_may_use
  5610. Lines: 1
  5611. 0
  5612. Mode: 444
  5613. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  5614. Path: fixtures/sys/fs/btrfs/0abb23a9-579b-43e6-ad30-227ef47fcb9d/allocation/data/bytes_pinned
  5615. Lines: 1
  5616. 0
  5617. Mode: 444
  5618. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  5619. Path: fixtures/sys/fs/btrfs/0abb23a9-579b-43e6-ad30-227ef47fcb9d/allocation/data/bytes_readonly
  5620. Lines: 1
  5621. 0
  5622. Mode: 444
  5623. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  5624. Path: fixtures/sys/fs/btrfs/0abb23a9-579b-43e6-ad30-227ef47fcb9d/allocation/data/bytes_reserved
  5625. Lines: 1
  5626. 0
  5627. Mode: 444
  5628. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  5629. Path: fixtures/sys/fs/btrfs/0abb23a9-579b-43e6-ad30-227ef47fcb9d/allocation/data/bytes_used
  5630. Lines: 1
  5631. 808189952
  5632. Mode: 444
  5633. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  5634. Path: fixtures/sys/fs/btrfs/0abb23a9-579b-43e6-ad30-227ef47fcb9d/allocation/data/disk_total
  5635. Lines: 1
  5636. 2147483648
  5637. Mode: 444
  5638. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  5639. Path: fixtures/sys/fs/btrfs/0abb23a9-579b-43e6-ad30-227ef47fcb9d/allocation/data/disk_used
  5640. Lines: 1
  5641. 808189952
  5642. Mode: 444
  5643. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  5644. Path: fixtures/sys/fs/btrfs/0abb23a9-579b-43e6-ad30-227ef47fcb9d/allocation/data/flags
  5645. Lines: 1
  5646. 1
  5647. Mode: 444
  5648. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  5649. Directory: fixtures/sys/fs/btrfs/0abb23a9-579b-43e6-ad30-227ef47fcb9d/allocation/data/raid0
  5650. Mode: 755
  5651. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  5652. Path: fixtures/sys/fs/btrfs/0abb23a9-579b-43e6-ad30-227ef47fcb9d/allocation/data/raid0/total_bytes
  5653. Lines: 1
  5654. 2147483648
  5655. Mode: 444
  5656. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  5657. Path: fixtures/sys/fs/btrfs/0abb23a9-579b-43e6-ad30-227ef47fcb9d/allocation/data/raid0/used_bytes
  5658. Lines: 1
  5659. 808189952
  5660. Mode: 444
  5661. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  5662. Path: fixtures/sys/fs/btrfs/0abb23a9-579b-43e6-ad30-227ef47fcb9d/allocation/data/total_bytes
  5663. Lines: 1
  5664. 2147483648
  5665. Mode: 444
  5666. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  5667. Path: fixtures/sys/fs/btrfs/0abb23a9-579b-43e6-ad30-227ef47fcb9d/allocation/data/total_bytes_pinned
  5668. Lines: 1
  5669. 0
  5670. Mode: 444
  5671. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  5672. Path: fixtures/sys/fs/btrfs/0abb23a9-579b-43e6-ad30-227ef47fcb9d/allocation/global_rsv_reserved
  5673. Lines: 1
  5674. 16777216
  5675. Mode: 444
  5676. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  5677. Path: fixtures/sys/fs/btrfs/0abb23a9-579b-43e6-ad30-227ef47fcb9d/allocation/global_rsv_size
  5678. Lines: 1
  5679. 16777216
  5680. Mode: 444
  5681. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  5682. Directory: fixtures/sys/fs/btrfs/0abb23a9-579b-43e6-ad30-227ef47fcb9d/allocation/metadata
  5683. Mode: 755
  5684. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  5685. Path: fixtures/sys/fs/btrfs/0abb23a9-579b-43e6-ad30-227ef47fcb9d/allocation/metadata/bytes_may_use
  5686. Lines: 1
  5687. 16777216
  5688. Mode: 444
  5689. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  5690. Path: fixtures/sys/fs/btrfs/0abb23a9-579b-43e6-ad30-227ef47fcb9d/allocation/metadata/bytes_pinned
  5691. Lines: 1
  5692. 0
  5693. Mode: 444
  5694. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  5695. Path: fixtures/sys/fs/btrfs/0abb23a9-579b-43e6-ad30-227ef47fcb9d/allocation/metadata/bytes_readonly
  5696. Lines: 1
  5697. 131072
  5698. Mode: 444
  5699. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  5700. Path: fixtures/sys/fs/btrfs/0abb23a9-579b-43e6-ad30-227ef47fcb9d/allocation/metadata/bytes_reserved
  5701. Lines: 1
  5702. 0
  5703. Mode: 444
  5704. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  5705. Path: fixtures/sys/fs/btrfs/0abb23a9-579b-43e6-ad30-227ef47fcb9d/allocation/metadata/bytes_used
  5706. Lines: 1
  5707. 933888
  5708. Mode: 444
  5709. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  5710. Path: fixtures/sys/fs/btrfs/0abb23a9-579b-43e6-ad30-227ef47fcb9d/allocation/metadata/disk_total
  5711. Lines: 1
  5712. 2147483648
  5713. Mode: 444
  5714. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  5715. Path: fixtures/sys/fs/btrfs/0abb23a9-579b-43e6-ad30-227ef47fcb9d/allocation/metadata/disk_used
  5716. Lines: 1
  5717. 1867776
  5718. Mode: 444
  5719. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  5720. Path: fixtures/sys/fs/btrfs/0abb23a9-579b-43e6-ad30-227ef47fcb9d/allocation/metadata/flags
  5721. Lines: 1
  5722. 4
  5723. Mode: 444
  5724. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  5725. Directory: fixtures/sys/fs/btrfs/0abb23a9-579b-43e6-ad30-227ef47fcb9d/allocation/metadata/raid1
  5726. Mode: 755
  5727. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  5728. Path: fixtures/sys/fs/btrfs/0abb23a9-579b-43e6-ad30-227ef47fcb9d/allocation/metadata/raid1/total_bytes
  5729. Lines: 1
  5730. 1073741824
  5731. Mode: 444
  5732. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  5733. Path: fixtures/sys/fs/btrfs/0abb23a9-579b-43e6-ad30-227ef47fcb9d/allocation/metadata/raid1/used_bytes
  5734. Lines: 1
  5735. 933888
  5736. Mode: 444
  5737. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  5738. Path: fixtures/sys/fs/btrfs/0abb23a9-579b-43e6-ad30-227ef47fcb9d/allocation/metadata/total_bytes
  5739. Lines: 1
  5740. 1073741824
  5741. Mode: 444
  5742. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  5743. Path: fixtures/sys/fs/btrfs/0abb23a9-579b-43e6-ad30-227ef47fcb9d/allocation/metadata/total_bytes_pinned
  5744. Lines: 1
  5745. 0
  5746. Mode: 444
  5747. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  5748. Directory: fixtures/sys/fs/btrfs/0abb23a9-579b-43e6-ad30-227ef47fcb9d/allocation/system
  5749. Mode: 755
  5750. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  5751. Path: fixtures/sys/fs/btrfs/0abb23a9-579b-43e6-ad30-227ef47fcb9d/allocation/system/bytes_may_use
  5752. Lines: 1
  5753. 0
  5754. Mode: 444
  5755. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  5756. Path: fixtures/sys/fs/btrfs/0abb23a9-579b-43e6-ad30-227ef47fcb9d/allocation/system/bytes_pinned
  5757. Lines: 1
  5758. 0
  5759. Mode: 444
  5760. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  5761. Path: fixtures/sys/fs/btrfs/0abb23a9-579b-43e6-ad30-227ef47fcb9d/allocation/system/bytes_readonly
  5762. Lines: 1
  5763. 0
  5764. Mode: 444
  5765. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  5766. Path: fixtures/sys/fs/btrfs/0abb23a9-579b-43e6-ad30-227ef47fcb9d/allocation/system/bytes_reserved
  5767. Lines: 1
  5768. 0
  5769. Mode: 444
  5770. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  5771. Path: fixtures/sys/fs/btrfs/0abb23a9-579b-43e6-ad30-227ef47fcb9d/allocation/system/bytes_used
  5772. Lines: 1
  5773. 16384
  5774. Mode: 444
  5775. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  5776. Path: fixtures/sys/fs/btrfs/0abb23a9-579b-43e6-ad30-227ef47fcb9d/allocation/system/disk_total
  5777. Lines: 1
  5778. 16777216
  5779. Mode: 444
  5780. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  5781. Path: fixtures/sys/fs/btrfs/0abb23a9-579b-43e6-ad30-227ef47fcb9d/allocation/system/disk_used
  5782. Lines: 1
  5783. 32768
  5784. Mode: 444
  5785. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  5786. Path: fixtures/sys/fs/btrfs/0abb23a9-579b-43e6-ad30-227ef47fcb9d/allocation/system/flags
  5787. Lines: 1
  5788. 2
  5789. Mode: 444
  5790. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  5791. Directory: fixtures/sys/fs/btrfs/0abb23a9-579b-43e6-ad30-227ef47fcb9d/allocation/system/raid1
  5792. Mode: 755
  5793. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  5794. Path: fixtures/sys/fs/btrfs/0abb23a9-579b-43e6-ad30-227ef47fcb9d/allocation/system/raid1/total_bytes
  5795. Lines: 1
  5796. 8388608
  5797. Mode: 444
  5798. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  5799. Path: fixtures/sys/fs/btrfs/0abb23a9-579b-43e6-ad30-227ef47fcb9d/allocation/system/raid1/used_bytes
  5800. Lines: 1
  5801. 16384
  5802. Mode: 444
  5803. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  5804. Path: fixtures/sys/fs/btrfs/0abb23a9-579b-43e6-ad30-227ef47fcb9d/allocation/system/total_bytes
  5805. Lines: 1
  5806. 8388608
  5807. Mode: 444
  5808. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  5809. Path: fixtures/sys/fs/btrfs/0abb23a9-579b-43e6-ad30-227ef47fcb9d/allocation/system/total_bytes_pinned
  5810. Lines: 1
  5811. 0
  5812. Mode: 444
  5813. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  5814. Path: fixtures/sys/fs/btrfs/0abb23a9-579b-43e6-ad30-227ef47fcb9d/clone_alignment
  5815. Lines: 1
  5816. 4096
  5817. Mode: 444
  5818. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  5819. Directory: fixtures/sys/fs/btrfs/0abb23a9-579b-43e6-ad30-227ef47fcb9d/devices
  5820. Mode: 755
  5821. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  5822. Directory: fixtures/sys/fs/btrfs/0abb23a9-579b-43e6-ad30-227ef47fcb9d/devices/loop25
  5823. Mode: 755
  5824. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  5825. Path: fixtures/sys/fs/btrfs/0abb23a9-579b-43e6-ad30-227ef47fcb9d/devices/loop25/size
  5826. Lines: 1
  5827. 20971520
  5828. Mode: 444
  5829. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  5830. Directory: fixtures/sys/fs/btrfs/0abb23a9-579b-43e6-ad30-227ef47fcb9d/devices/loop26
  5831. Mode: 755
  5832. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  5833. Path: fixtures/sys/fs/btrfs/0abb23a9-579b-43e6-ad30-227ef47fcb9d/devices/loop26/size
  5834. Lines: 1
  5835. 20971520
  5836. Mode: 444
  5837. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  5838. Directory: fixtures/sys/fs/btrfs/0abb23a9-579b-43e6-ad30-227ef47fcb9d/features
  5839. Mode: 755
  5840. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  5841. Path: fixtures/sys/fs/btrfs/0abb23a9-579b-43e6-ad30-227ef47fcb9d/features/big_metadata
  5842. Lines: 1
  5843. 1
  5844. Mode: 444
  5845. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  5846. Path: fixtures/sys/fs/btrfs/0abb23a9-579b-43e6-ad30-227ef47fcb9d/features/extended_iref
  5847. Lines: 1
  5848. 1
  5849. Mode: 644
  5850. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  5851. Path: fixtures/sys/fs/btrfs/0abb23a9-579b-43e6-ad30-227ef47fcb9d/features/mixed_backref
  5852. Lines: 1
  5853. 1
  5854. Mode: 444
  5855. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  5856. Path: fixtures/sys/fs/btrfs/0abb23a9-579b-43e6-ad30-227ef47fcb9d/features/skinny_metadata
  5857. Lines: 1
  5858. 1
  5859. Mode: 444
  5860. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  5861. Path: fixtures/sys/fs/btrfs/0abb23a9-579b-43e6-ad30-227ef47fcb9d/label
  5862. Lines: 1
  5863. fixture
  5864. Mode: 644
  5865. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  5866. Path: fixtures/sys/fs/btrfs/0abb23a9-579b-43e6-ad30-227ef47fcb9d/metadata_uuid
  5867. Lines: 1
  5868. 0abb23a9-579b-43e6-ad30-227ef47fcb9d
  5869. Mode: 444
  5870. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  5871. Path: fixtures/sys/fs/btrfs/0abb23a9-579b-43e6-ad30-227ef47fcb9d/nodesize
  5872. Lines: 1
  5873. 16384
  5874. Mode: 444
  5875. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  5876. Path: fixtures/sys/fs/btrfs/0abb23a9-579b-43e6-ad30-227ef47fcb9d/quota_override
  5877. Lines: 1
  5878. 0
  5879. Mode: 644
  5880. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  5881. Path: fixtures/sys/fs/btrfs/0abb23a9-579b-43e6-ad30-227ef47fcb9d/sectorsize
  5882. Lines: 1
  5883. 4096
  5884. Mode: 444
  5885. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  5886. Directory: fixtures/sys/fs/btrfs/7f07c59f-6136-449c-ab87-e1cf2328731b
  5887. Mode: 755
  5888. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  5889. Directory: fixtures/sys/fs/btrfs/7f07c59f-6136-449c-ab87-e1cf2328731b/allocation
  5890. Mode: 755
  5891. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  5892. Directory: fixtures/sys/fs/btrfs/7f07c59f-6136-449c-ab87-e1cf2328731b/allocation/data
  5893. Mode: 755
  5894. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  5895. Path: fixtures/sys/fs/btrfs/7f07c59f-6136-449c-ab87-e1cf2328731b/allocation/data/bytes_may_use
  5896. Lines: 1
  5897. 0
  5898. Mode: 444
  5899. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  5900. Path: fixtures/sys/fs/btrfs/7f07c59f-6136-449c-ab87-e1cf2328731b/allocation/data/bytes_pinned
  5901. Lines: 1
  5902. 0
  5903. Mode: 444
  5904. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  5905. Path: fixtures/sys/fs/btrfs/7f07c59f-6136-449c-ab87-e1cf2328731b/allocation/data/bytes_readonly
  5906. Lines: 1
  5907. 0
  5908. Mode: 444
  5909. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  5910. Path: fixtures/sys/fs/btrfs/7f07c59f-6136-449c-ab87-e1cf2328731b/allocation/data/bytes_reserved
  5911. Lines: 1
  5912. 0
  5913. Mode: 444
  5914. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  5915. Path: fixtures/sys/fs/btrfs/7f07c59f-6136-449c-ab87-e1cf2328731b/allocation/data/bytes_used
  5916. Lines: 1
  5917. 0
  5918. Mode: 444
  5919. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  5920. Path: fixtures/sys/fs/btrfs/7f07c59f-6136-449c-ab87-e1cf2328731b/allocation/data/disk_total
  5921. Lines: 1
  5922. 644087808
  5923. Mode: 444
  5924. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  5925. Path: fixtures/sys/fs/btrfs/7f07c59f-6136-449c-ab87-e1cf2328731b/allocation/data/disk_used
  5926. Lines: 1
  5927. 0
  5928. Mode: 444
  5929. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  5930. Path: fixtures/sys/fs/btrfs/7f07c59f-6136-449c-ab87-e1cf2328731b/allocation/data/flags
  5931. Lines: 1
  5932. 1
  5933. Mode: 444
  5934. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  5935. Directory: fixtures/sys/fs/btrfs/7f07c59f-6136-449c-ab87-e1cf2328731b/allocation/data/raid5
  5936. Mode: 755
  5937. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  5938. Path: fixtures/sys/fs/btrfs/7f07c59f-6136-449c-ab87-e1cf2328731b/allocation/data/raid5/total_bytes
  5939. Lines: 1
  5940. 644087808
  5941. Mode: 444
  5942. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  5943. Path: fixtures/sys/fs/btrfs/7f07c59f-6136-449c-ab87-e1cf2328731b/allocation/data/raid5/used_bytes
  5944. Lines: 1
  5945. 0
  5946. Mode: 444
  5947. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  5948. Path: fixtures/sys/fs/btrfs/7f07c59f-6136-449c-ab87-e1cf2328731b/allocation/data/total_bytes
  5949. Lines: 1
  5950. 644087808
  5951. Mode: 444
  5952. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  5953. Path: fixtures/sys/fs/btrfs/7f07c59f-6136-449c-ab87-e1cf2328731b/allocation/data/total_bytes_pinned
  5954. Lines: 1
  5955. 0
  5956. Mode: 444
  5957. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  5958. Path: fixtures/sys/fs/btrfs/7f07c59f-6136-449c-ab87-e1cf2328731b/allocation/global_rsv_reserved
  5959. Lines: 1
  5960. 16777216
  5961. Mode: 444
  5962. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  5963. Path: fixtures/sys/fs/btrfs/7f07c59f-6136-449c-ab87-e1cf2328731b/allocation/global_rsv_size
  5964. Lines: 1
  5965. 16777216
  5966. Mode: 444
  5967. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  5968. Directory: fixtures/sys/fs/btrfs/7f07c59f-6136-449c-ab87-e1cf2328731b/allocation/metadata
  5969. Mode: 755
  5970. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  5971. Path: fixtures/sys/fs/btrfs/7f07c59f-6136-449c-ab87-e1cf2328731b/allocation/metadata/bytes_may_use
  5972. Lines: 1
  5973. 16777216
  5974. Mode: 444
  5975. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  5976. Path: fixtures/sys/fs/btrfs/7f07c59f-6136-449c-ab87-e1cf2328731b/allocation/metadata/bytes_pinned
  5977. Lines: 1
  5978. 0
  5979. Mode: 444
  5980. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  5981. Path: fixtures/sys/fs/btrfs/7f07c59f-6136-449c-ab87-e1cf2328731b/allocation/metadata/bytes_readonly
  5982. Lines: 1
  5983. 262144
  5984. Mode: 444
  5985. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  5986. Path: fixtures/sys/fs/btrfs/7f07c59f-6136-449c-ab87-e1cf2328731b/allocation/metadata/bytes_reserved
  5987. Lines: 1
  5988. 0
  5989. Mode: 444
  5990. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  5991. Path: fixtures/sys/fs/btrfs/7f07c59f-6136-449c-ab87-e1cf2328731b/allocation/metadata/bytes_used
  5992. Lines: 1
  5993. 114688
  5994. Mode: 444
  5995. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  5996. Path: fixtures/sys/fs/btrfs/7f07c59f-6136-449c-ab87-e1cf2328731b/allocation/metadata/disk_total
  5997. Lines: 1
  5998. 429391872
  5999. Mode: 444
  6000. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  6001. Path: fixtures/sys/fs/btrfs/7f07c59f-6136-449c-ab87-e1cf2328731b/allocation/metadata/disk_used
  6002. Lines: 1
  6003. 114688
  6004. Mode: 444
  6005. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  6006. Path: fixtures/sys/fs/btrfs/7f07c59f-6136-449c-ab87-e1cf2328731b/allocation/metadata/flags
  6007. Lines: 1
  6008. 4
  6009. Mode: 444
  6010. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  6011. Directory: fixtures/sys/fs/btrfs/7f07c59f-6136-449c-ab87-e1cf2328731b/allocation/metadata/raid6
  6012. Mode: 755
  6013. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  6014. Path: fixtures/sys/fs/btrfs/7f07c59f-6136-449c-ab87-e1cf2328731b/allocation/metadata/raid6/total_bytes
  6015. Lines: 1
  6016. 429391872
  6017. Mode: 444
  6018. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  6019. Path: fixtures/sys/fs/btrfs/7f07c59f-6136-449c-ab87-e1cf2328731b/allocation/metadata/raid6/used_bytes
  6020. Lines: 1
  6021. 114688
  6022. Mode: 444
  6023. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  6024. Path: fixtures/sys/fs/btrfs/7f07c59f-6136-449c-ab87-e1cf2328731b/allocation/metadata/total_bytes
  6025. Lines: 1
  6026. 429391872
  6027. Mode: 444
  6028. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  6029. Path: fixtures/sys/fs/btrfs/7f07c59f-6136-449c-ab87-e1cf2328731b/allocation/metadata/total_bytes_pinned
  6030. Lines: 1
  6031. 0
  6032. Mode: 444
  6033. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  6034. Directory: fixtures/sys/fs/btrfs/7f07c59f-6136-449c-ab87-e1cf2328731b/allocation/system
  6035. Mode: 755
  6036. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  6037. Path: fixtures/sys/fs/btrfs/7f07c59f-6136-449c-ab87-e1cf2328731b/allocation/system/bytes_may_use
  6038. Lines: 1
  6039. 0
  6040. Mode: 444
  6041. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  6042. Path: fixtures/sys/fs/btrfs/7f07c59f-6136-449c-ab87-e1cf2328731b/allocation/system/bytes_pinned
  6043. Lines: 1
  6044. 0
  6045. Mode: 444
  6046. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  6047. Path: fixtures/sys/fs/btrfs/7f07c59f-6136-449c-ab87-e1cf2328731b/allocation/system/bytes_readonly
  6048. Lines: 1
  6049. 0
  6050. Mode: 444
  6051. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  6052. Path: fixtures/sys/fs/btrfs/7f07c59f-6136-449c-ab87-e1cf2328731b/allocation/system/bytes_reserved
  6053. Lines: 1
  6054. 0
  6055. Mode: 444
  6056. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  6057. Path: fixtures/sys/fs/btrfs/7f07c59f-6136-449c-ab87-e1cf2328731b/allocation/system/bytes_used
  6058. Lines: 1
  6059. 16384
  6060. Mode: 444
  6061. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  6062. Path: fixtures/sys/fs/btrfs/7f07c59f-6136-449c-ab87-e1cf2328731b/allocation/system/disk_total
  6063. Lines: 1
  6064. 16777216
  6065. Mode: 444
  6066. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  6067. Path: fixtures/sys/fs/btrfs/7f07c59f-6136-449c-ab87-e1cf2328731b/allocation/system/disk_used
  6068. Lines: 1
  6069. 16384
  6070. Mode: 444
  6071. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  6072. Path: fixtures/sys/fs/btrfs/7f07c59f-6136-449c-ab87-e1cf2328731b/allocation/system/flags
  6073. Lines: 1
  6074. 2
  6075. Mode: 444
  6076. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  6077. Directory: fixtures/sys/fs/btrfs/7f07c59f-6136-449c-ab87-e1cf2328731b/allocation/system/raid6
  6078. Mode: 755
  6079. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  6080. Path: fixtures/sys/fs/btrfs/7f07c59f-6136-449c-ab87-e1cf2328731b/allocation/system/raid6/total_bytes
  6081. Lines: 1
  6082. 16777216
  6083. Mode: 444
  6084. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  6085. Path: fixtures/sys/fs/btrfs/7f07c59f-6136-449c-ab87-e1cf2328731b/allocation/system/raid6/used_bytes
  6086. Lines: 1
  6087. 16384
  6088. Mode: 444
  6089. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  6090. Path: fixtures/sys/fs/btrfs/7f07c59f-6136-449c-ab87-e1cf2328731b/allocation/system/total_bytes
  6091. Lines: 1
  6092. 16777216
  6093. Mode: 444
  6094. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  6095. Path: fixtures/sys/fs/btrfs/7f07c59f-6136-449c-ab87-e1cf2328731b/allocation/system/total_bytes_pinned
  6096. Lines: 1
  6097. 0
  6098. Mode: 444
  6099. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  6100. Path: fixtures/sys/fs/btrfs/7f07c59f-6136-449c-ab87-e1cf2328731b/clone_alignment
  6101. Lines: 1
  6102. 4096
  6103. Mode: 444
  6104. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  6105. Directory: fixtures/sys/fs/btrfs/7f07c59f-6136-449c-ab87-e1cf2328731b/devices
  6106. Mode: 755
  6107. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  6108. Path: fixtures/sys/fs/btrfs/7f07c59f-6136-449c-ab87-e1cf2328731b/devices/loop22
  6109. SymlinkTo: ../../../../devices/virtual/block/loop22
  6110. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  6111. Path: fixtures/sys/fs/btrfs/7f07c59f-6136-449c-ab87-e1cf2328731b/devices/loop23
  6112. SymlinkTo: ../../../../devices/virtual/block/loop23
  6113. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  6114. Path: fixtures/sys/fs/btrfs/7f07c59f-6136-449c-ab87-e1cf2328731b/devices/loop24
  6115. SymlinkTo: ../../../../devices/virtual/block/loop24
  6116. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  6117. Path: fixtures/sys/fs/btrfs/7f07c59f-6136-449c-ab87-e1cf2328731b/devices/loop25
  6118. SymlinkTo: ../../../../devices/virtual/block/loop25
  6119. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  6120. Directory: fixtures/sys/fs/btrfs/7f07c59f-6136-449c-ab87-e1cf2328731b/features
  6121. Mode: 755
  6122. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  6123. Path: fixtures/sys/fs/btrfs/7f07c59f-6136-449c-ab87-e1cf2328731b/features/big_metadata
  6124. Lines: 1
  6125. 1
  6126. Mode: 444
  6127. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  6128. Path: fixtures/sys/fs/btrfs/7f07c59f-6136-449c-ab87-e1cf2328731b/features/extended_iref
  6129. Lines: 1
  6130. 1
  6131. Mode: 644
  6132. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  6133. Path: fixtures/sys/fs/btrfs/7f07c59f-6136-449c-ab87-e1cf2328731b/features/mixed_backref
  6134. Lines: 1
  6135. 1
  6136. Mode: 444
  6137. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  6138. Path: fixtures/sys/fs/btrfs/7f07c59f-6136-449c-ab87-e1cf2328731b/features/raid56
  6139. Lines: 1
  6140. 1
  6141. Mode: 444
  6142. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  6143. Path: fixtures/sys/fs/btrfs/7f07c59f-6136-449c-ab87-e1cf2328731b/features/skinny_metadata
  6144. Lines: 1
  6145. 1
  6146. Mode: 444
  6147. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  6148. Path: fixtures/sys/fs/btrfs/7f07c59f-6136-449c-ab87-e1cf2328731b/label
  6149. Lines: 0
  6150. Mode: 644
  6151. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  6152. Path: fixtures/sys/fs/btrfs/7f07c59f-6136-449c-ab87-e1cf2328731b/metadata_uuid
  6153. Lines: 1
  6154. 7f07c59f-6136-449c-ab87-e1cf2328731b
  6155. Mode: 444
  6156. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  6157. Path: fixtures/sys/fs/btrfs/7f07c59f-6136-449c-ab87-e1cf2328731b/nodesize
  6158. Lines: 1
  6159. 16384
  6160. Mode: 444
  6161. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  6162. Path: fixtures/sys/fs/btrfs/7f07c59f-6136-449c-ab87-e1cf2328731b/quota_override
  6163. Lines: 1
  6164. 0
  6165. Mode: 644
  6166. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  6167. Path: fixtures/sys/fs/btrfs/7f07c59f-6136-449c-ab87-e1cf2328731b/sectorsize
  6168. Lines: 1
  6169. 4096
  6170. Mode: 444
  6171. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  6172. Directory: fixtures/sys/fs/xfs
  6173. Mode: 755
  6174. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  6175. Directory: fixtures/sys/fs/xfs/sda1
  6176. Mode: 755
  6177. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  6178. Directory: fixtures/sys/fs/xfs/sda1/stats
  6179. Mode: 755
  6180. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  6181. Path: fixtures/sys/fs/xfs/sda1/stats/stats
  6182. Lines: 1
  6183. extent_alloc 1 0 0 0
  6184. Mode: 644
  6185. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  6186. Directory: fixtures/sys/fs/xfs/sdb1
  6187. Mode: 755
  6188. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  6189. Directory: fixtures/sys/fs/xfs/sdb1/stats
  6190. Mode: 755
  6191. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  6192. Path: fixtures/sys/fs/xfs/sdb1/stats/stats
  6193. Lines: 1
  6194. extent_alloc 2 0 0 0
  6195. Mode: 644
  6196. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  6197. Directory: fixtures/sys/kernel
  6198. Mode: 755
  6199. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  6200. Directory: fixtures/sys/kernel/config
  6201. Mode: 755
  6202. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  6203. Directory: fixtures/sys/kernel/config/target
  6204. Mode: 755
  6205. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  6206. Directory: fixtures/sys/kernel/config/target/core
  6207. Mode: 755
  6208. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  6209. Directory: fixtures/sys/kernel/config/target/core/fileio_0
  6210. Mode: 755
  6211. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  6212. Directory: fixtures/sys/kernel/config/target/core/fileio_1
  6213. Mode: 755
  6214. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  6215. Directory: fixtures/sys/kernel/config/target/core/fileio_1/file_lio_1G
  6216. Mode: 755
  6217. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  6218. Path: fixtures/sys/kernel/config/target/core/fileio_1/file_lio_1G/enable
  6219. Lines: 1
  6220. 1
  6221. Mode: 644
  6222. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  6223. Path: fixtures/sys/kernel/config/target/core/fileio_1/file_lio_1G/udev_path
  6224. Lines: 1
  6225. /home/iscsi/file_back_1G
  6226. Mode: 644
  6227. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  6228. Directory: fixtures/sys/kernel/config/target/core/iblock_0
  6229. Mode: 755
  6230. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  6231. Directory: fixtures/sys/kernel/config/target/core/iblock_0/block_lio_rbd1
  6232. Mode: 755
  6233. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  6234. Path: fixtures/sys/kernel/config/target/core/iblock_0/block_lio_rbd1/enable
  6235. Lines: 1
  6236. 1
  6237. Mode: 644
  6238. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  6239. Path: fixtures/sys/kernel/config/target/core/iblock_0/block_lio_rbd1/udev_path
  6240. Lines: 1
  6241. /dev/rbd1
  6242. Mode: 644
  6243. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  6244. Directory: fixtures/sys/kernel/config/target/core/rbd_0
  6245. Mode: 755
  6246. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  6247. Directory: fixtures/sys/kernel/config/target/core/rbd_0/iscsi-images-demo
  6248. Mode: 755
  6249. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  6250. Path: fixtures/sys/kernel/config/target/core/rbd_0/iscsi-images-demo/enable
  6251. Lines: 1
  6252. 1
  6253. Mode: 644
  6254. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  6255. Path: fixtures/sys/kernel/config/target/core/rbd_0/iscsi-images-demo/udev_path
  6256. Lines: 1
  6257. /dev/rbd/iscsi-images/demo
  6258. Mode: 644
  6259. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  6260. Directory: fixtures/sys/kernel/config/target/core/rd_mcp_119
  6261. Mode: 755
  6262. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  6263. Directory: fixtures/sys/kernel/config/target/core/rd_mcp_119/ramdisk_lio_1G
  6264. Mode: 755
  6265. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  6266. Path: fixtures/sys/kernel/config/target/core/rd_mcp_119/ramdisk_lio_1G/enable
  6267. Lines: 1
  6268. 1
  6269. Mode: 644
  6270. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  6271. Path: fixtures/sys/kernel/config/target/core/rd_mcp_119/ramdisk_lio_1G/udev_path
  6272. Lines: 0
  6273. Mode: 644
  6274. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  6275. Directory: fixtures/sys/kernel/config/target/iscsi
  6276. Mode: 755
  6277. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  6278. Directory: fixtures/sys/kernel/config/target/iscsi/iqn.2003-01.org.linux-iscsi.osd1.x8664:sn.8888bbbbddd0
  6279. Mode: 755
  6280. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  6281. Directory: fixtures/sys/kernel/config/target/iscsi/iqn.2003-01.org.linux-iscsi.osd1.x8664:sn.8888bbbbddd0/tpgt_1
  6282. Mode: 755
  6283. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  6284. Path: fixtures/sys/kernel/config/target/iscsi/iqn.2003-01.org.linux-iscsi.osd1.x8664:sn.8888bbbbddd0/tpgt_1/enable
  6285. Lines: 1
  6286. 1
  6287. Mode: 644
  6288. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  6289. Directory: fixtures/sys/kernel/config/target/iscsi/iqn.2003-01.org.linux-iscsi.osd1.x8664:sn.8888bbbbddd0/tpgt_1/lun
  6290. Mode: 755
  6291. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  6292. Directory: fixtures/sys/kernel/config/target/iscsi/iqn.2003-01.org.linux-iscsi.osd1.x8664:sn.8888bbbbddd0/tpgt_1/lun/lun_0
  6293. Mode: 755
  6294. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  6295. Path: fixtures/sys/kernel/config/target/iscsi/iqn.2003-01.org.linux-iscsi.osd1.x8664:sn.8888bbbbddd0/tpgt_1/lun/lun_0/7f4a4eb56d
  6296. SymlinkTo: ../../../../../../target/core/rd_mcp_119/ramdisk_lio_1G
  6297. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  6298. Directory: fixtures/sys/kernel/config/target/iscsi/iqn.2003-01.org.linux-iscsi.osd1.x8664:sn.8888bbbbddd0/tpgt_1/lun/lun_0/statistics
  6299. Mode: 755
  6300. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  6301. Directory: fixtures/sys/kernel/config/target/iscsi/iqn.2003-01.org.linux-iscsi.osd1.x8664:sn.8888bbbbddd0/tpgt_1/lun/lun_0/statistics/scsi_tgt_port
  6302. Mode: 755
  6303. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  6304. Path: fixtures/sys/kernel/config/target/iscsi/iqn.2003-01.org.linux-iscsi.osd1.x8664:sn.8888bbbbddd0/tpgt_1/lun/lun_0/statistics/scsi_tgt_port/in_cmds
  6305. Lines: 1
  6306. 204950
  6307. Mode: 644
  6308. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  6309. Path: fixtures/sys/kernel/config/target/iscsi/iqn.2003-01.org.linux-iscsi.osd1.x8664:sn.8888bbbbddd0/tpgt_1/lun/lun_0/statistics/scsi_tgt_port/read_mbytes
  6310. Lines: 1
  6311. 10325
  6312. Mode: 644
  6313. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  6314. Path: fixtures/sys/kernel/config/target/iscsi/iqn.2003-01.org.linux-iscsi.osd1.x8664:sn.8888bbbbddd0/tpgt_1/lun/lun_0/statistics/scsi_tgt_port/write_mbytes
  6315. Lines: 1
  6316. 40325
  6317. Mode: 644
  6318. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  6319. Directory: fixtures/sys/kernel/config/target/iscsi/iqn.2003-01.org.linux-iscsi.osd1.x8664:sn.abcd1abcd2ab
  6320. Mode: 755
  6321. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  6322. Directory: fixtures/sys/kernel/config/target/iscsi/iqn.2003-01.org.linux-iscsi.osd1.x8664:sn.abcd1abcd2ab/tpgt_1
  6323. Mode: 755
  6324. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  6325. Path: fixtures/sys/kernel/config/target/iscsi/iqn.2003-01.org.linux-iscsi.osd1.x8664:sn.abcd1abcd2ab/tpgt_1/enable
  6326. Lines: 1
  6327. 1
  6328. Mode: 644
  6329. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  6330. Directory: fixtures/sys/kernel/config/target/iscsi/iqn.2003-01.org.linux-iscsi.osd1.x8664:sn.abcd1abcd2ab/tpgt_1/lun
  6331. Mode: 755
  6332. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  6333. Directory: fixtures/sys/kernel/config/target/iscsi/iqn.2003-01.org.linux-iscsi.osd1.x8664:sn.abcd1abcd2ab/tpgt_1/lun/lun_0
  6334. Mode: 755
  6335. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  6336. Path: fixtures/sys/kernel/config/target/iscsi/iqn.2003-01.org.linux-iscsi.osd1.x8664:sn.abcd1abcd2ab/tpgt_1/lun/lun_0/795b7c7026
  6337. SymlinkTo: ../../../../../../target/core/iblock_0/block_lio_rbd1
  6338. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  6339. Directory: fixtures/sys/kernel/config/target/iscsi/iqn.2003-01.org.linux-iscsi.osd1.x8664:sn.abcd1abcd2ab/tpgt_1/lun/lun_0/statistics
  6340. Mode: 755
  6341. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  6342. Directory: fixtures/sys/kernel/config/target/iscsi/iqn.2003-01.org.linux-iscsi.osd1.x8664:sn.abcd1abcd2ab/tpgt_1/lun/lun_0/statistics/scsi_tgt_port
  6343. Mode: 755
  6344. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  6345. Path: fixtures/sys/kernel/config/target/iscsi/iqn.2003-01.org.linux-iscsi.osd1.x8664:sn.abcd1abcd2ab/tpgt_1/lun/lun_0/statistics/scsi_tgt_port/in_cmds
  6346. Lines: 1
  6347. 104950
  6348. Mode: 644
  6349. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  6350. Path: fixtures/sys/kernel/config/target/iscsi/iqn.2003-01.org.linux-iscsi.osd1.x8664:sn.abcd1abcd2ab/tpgt_1/lun/lun_0/statistics/scsi_tgt_port/read_mbytes
  6351. Lines: 1
  6352. 20095
  6353. Mode: 644
  6354. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  6355. Path: fixtures/sys/kernel/config/target/iscsi/iqn.2003-01.org.linux-iscsi.osd1.x8664:sn.abcd1abcd2ab/tpgt_1/lun/lun_0/statistics/scsi_tgt_port/write_mbytes
  6356. Lines: 1
  6357. 71235
  6358. Mode: 644
  6359. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  6360. Directory: fixtures/sys/kernel/config/target/iscsi/iqn.2016-11.org.linux-iscsi.igw.x86:dev.rbd0
  6361. Mode: 755
  6362. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  6363. Directory: fixtures/sys/kernel/config/target/iscsi/iqn.2016-11.org.linux-iscsi.igw.x86:dev.rbd0/tpgt_1
  6364. Mode: 755
  6365. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  6366. Path: fixtures/sys/kernel/config/target/iscsi/iqn.2016-11.org.linux-iscsi.igw.x86:dev.rbd0/tpgt_1/enable
  6367. Lines: 1
  6368. 1
  6369. Mode: 644
  6370. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  6371. Directory: fixtures/sys/kernel/config/target/iscsi/iqn.2016-11.org.linux-iscsi.igw.x86:dev.rbd0/tpgt_1/lun
  6372. Mode: 755
  6373. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  6374. Directory: fixtures/sys/kernel/config/target/iscsi/iqn.2016-11.org.linux-iscsi.igw.x86:dev.rbd0/tpgt_1/lun/lun_0
  6375. Mode: 755
  6376. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  6377. Path: fixtures/sys/kernel/config/target/iscsi/iqn.2016-11.org.linux-iscsi.igw.x86:dev.rbd0/tpgt_1/lun/lun_0/fff5e16686
  6378. SymlinkTo: ../../../../../../target/core/fileio_1/file_lio_1G
  6379. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  6380. Directory: fixtures/sys/kernel/config/target/iscsi/iqn.2016-11.org.linux-iscsi.igw.x86:dev.rbd0/tpgt_1/lun/lun_0/statistics
  6381. Mode: 755
  6382. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  6383. Directory: fixtures/sys/kernel/config/target/iscsi/iqn.2016-11.org.linux-iscsi.igw.x86:dev.rbd0/tpgt_1/lun/lun_0/statistics/scsi_tgt_port
  6384. Mode: 755
  6385. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  6386. Path: fixtures/sys/kernel/config/target/iscsi/iqn.2016-11.org.linux-iscsi.igw.x86:dev.rbd0/tpgt_1/lun/lun_0/statistics/scsi_tgt_port/in_cmds
  6387. Lines: 1
  6388. 301950
  6389. Mode: 644
  6390. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  6391. Path: fixtures/sys/kernel/config/target/iscsi/iqn.2016-11.org.linux-iscsi.igw.x86:dev.rbd0/tpgt_1/lun/lun_0/statistics/scsi_tgt_port/read_mbytes
  6392. Lines: 1
  6393. 10195
  6394. Mode: 644
  6395. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  6396. Path: fixtures/sys/kernel/config/target/iscsi/iqn.2016-11.org.linux-iscsi.igw.x86:dev.rbd0/tpgt_1/lun/lun_0/statistics/scsi_tgt_port/write_mbytes
  6397. Lines: 1
  6398. 30195
  6399. Mode: 644
  6400. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  6401. Directory: fixtures/sys/kernel/config/target/iscsi/iqn.2016-11.org.linux-iscsi.igw.x86:sn.ramdemo
  6402. Mode: 755
  6403. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  6404. Directory: fixtures/sys/kernel/config/target/iscsi/iqn.2016-11.org.linux-iscsi.igw.x86:sn.ramdemo/tpgt_1
  6405. Mode: 755
  6406. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  6407. Path: fixtures/sys/kernel/config/target/iscsi/iqn.2016-11.org.linux-iscsi.igw.x86:sn.ramdemo/tpgt_1/enable
  6408. Lines: 1
  6409. 1
  6410. Mode: 644
  6411. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  6412. Directory: fixtures/sys/kernel/config/target/iscsi/iqn.2016-11.org.linux-iscsi.igw.x86:sn.ramdemo/tpgt_1/lun
  6413. Mode: 755
  6414. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  6415. Directory: fixtures/sys/kernel/config/target/iscsi/iqn.2016-11.org.linux-iscsi.igw.x86:sn.ramdemo/tpgt_1/lun/lun_0
  6416. Mode: 755
  6417. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  6418. Path: fixtures/sys/kernel/config/target/iscsi/iqn.2016-11.org.linux-iscsi.igw.x86:sn.ramdemo/tpgt_1/lun/lun_0/eba1edf893
  6419. SymlinkTo: ../../../../../../target/core/rbd_0/iscsi-images-demo
  6420. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  6421. Directory: fixtures/sys/kernel/config/target/iscsi/iqn.2016-11.org.linux-iscsi.igw.x86:sn.ramdemo/tpgt_1/lun/lun_0/statistics
  6422. Mode: 755
  6423. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  6424. Directory: fixtures/sys/kernel/config/target/iscsi/iqn.2016-11.org.linux-iscsi.igw.x86:sn.ramdemo/tpgt_1/lun/lun_0/statistics/scsi_tgt_port
  6425. Mode: 755
  6426. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  6427. Path: fixtures/sys/kernel/config/target/iscsi/iqn.2016-11.org.linux-iscsi.igw.x86:sn.ramdemo/tpgt_1/lun/lun_0/statistics/scsi_tgt_port/in_cmds
  6428. Lines: 1
  6429. 1234
  6430. Mode: 644
  6431. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  6432. Path: fixtures/sys/kernel/config/target/iscsi/iqn.2016-11.org.linux-iscsi.igw.x86:sn.ramdemo/tpgt_1/lun/lun_0/statistics/scsi_tgt_port/read_mbytes
  6433. Lines: 1
  6434. 1504
  6435. Mode: 644
  6436. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  6437. Path: fixtures/sys/kernel/config/target/iscsi/iqn.2016-11.org.linux-iscsi.igw.x86:sn.ramdemo/tpgt_1/lun/lun_0/statistics/scsi_tgt_port/write_mbytes
  6438. Lines: 1
  6439. 4733
  6440. Mode: 644
  6441. # ttar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -